aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionViewChromes.scss
blob: e5cb1b54619ad20104e5164073afa07b70a761ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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;
    }
}