aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionViewChromes.scss
diff options
context:
space:
mode:
authoryipstanley <stanley_yip@brown.edu>2019-07-23 16:32:43 -0400
committeryipstanley <stanley_yip@brown.edu>2019-07-23 16:32:43 -0400
commit3b740e1c1ac74e7aac45c136ec9df1b37e2dbc16 (patch)
tree477e73d37781fd0c8366e44a77634656a0ed352a /src/client/views/collections/CollectionViewChromes.scss
parentde9b03ca6c7116949952bc428e8d9257959ad974 (diff)
pretty ui for changing section fitler and added base for colletion chromes
Diffstat (limited to 'src/client/views/collections/CollectionViewChromes.scss')
-rw-r--r--src/client/views/collections/CollectionViewChromes.scss54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionViewChromes.scss b/src/client/views/collections/CollectionViewChromes.scss
new file mode 100644
index 000000000..e5cb1b546
--- /dev/null
+++ b/src/client/views/collections/CollectionViewChromes.scss
@@ -0,0 +1,54 @@
+@import "../globalCssVariables";
+
+.collectionStackingViewChrome {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ padding-bottom: 10px;
+ border-bottom: .5px solid lightgrey;
+ margin: 10px;
+
+ .collectionStackingViewChrome-sectionFilter-cont {
+ justify-self: right;
+ display: flex;
+ font-size: 75%;
+ text-transform: uppercase;
+ letter-spacing: 2px;
+
+ .collectionStackingViewChrome-sectionFilter-label {
+ vertical-align: center;
+ padding: 10px;
+ }
+
+ .collectionStackingViewChrome-sectionFilter {
+ color: white;
+ width: fit-content;
+ text-align: center;
+ background: rgb(238, 238, 238);
+ height: 37px;
+
+ .editable-view-input,
+ input,
+ .editableView-container-editing-oneLine,
+ .editableView-container-editing {
+ padding: 12px 10px 11px 10px;
+ border: 0px;
+ color: grey;
+ text-align: center;
+ text-transform: uppercase;
+ letter-spacing: 2px;
+ outline-color: black;
+ height: 100%;
+ }
+
+ .react-autosuggest__container {
+ margin: 0;
+ color: grey;
+ padding: 0px;
+ }
+ }
+ }
+
+ .collectionStackingViewChrome-sectionFilter:hover {
+ cursor: text;
+ }
+} \ No newline at end of file