aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionStackingView.scss
blob: 004b57effa487d5ee82de92311b4caaea8ee7898 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
@import "../globalCssVariables";

.collectionStackingView {
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    top: 0;
    overflow-y: auto;
    flex-wrap: wrap;
    transition: top .5s;

    .collectionStackingView-docView-container {
        width: 45%;
        margin: 5% 2.5%;
        padding-left: 2.5%;
        height: auto;
    }

    .collectionStackingView-flexCont {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .collectionStackingView-masonrySingle,
    .collectionStackingView-masonryGrid {
        width: 100%;
        height: 100%;
        position: absolute;
        display: grid;
        top: 0;
        left: 0;
        width: 100%;
        position: absolute;
    }

    .collectionStackingView-masonrySingle {
        width: 100%;
        height: 100%;
        position: absolute;
        display: flex;
        flex-direction: column;
        top: 0;
        left: 0;
        width: 100%;
        position: absolute;
    }

    .collectionStackingView-description {
        font-size: 100%;
        margin-bottom: 1vw;
        padding: 10px;
        height: 2vw;
        width: 100%;
        font-family: $sans-serif;
        background: $dark-color;
        color: $light-color;
    }

    .collectionStackingView-columnDragger {
        width: 15;
        height: 15;
        position: absolute;
        margin-left: -5;
    }

    .collectionStackingView-columnDoc {
        display: inline-block;
    }

    .collectionStackingView-masonryDoc {
        transform-origin: top left;
        grid-column-end: span 1;
        height: 100%;
    }

    .collectionStackingView-sectionHeader {
        text-align: center;
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 10px;
        overflow: hidden;

        .editableView-input {
            color: black;
        }

        .editableView-input:hover,
        .editableView-container-editing:hover,
        .editableView-container-editing-oneLine:hover {
            cursor: text
        }

        .collectionStackingView-sectionHeader-subCont {
            outline: none;
            border: 0px;
            color: $light-color;
            letter-spacing: 2px;
            font-size: 75%;
            transition: transform 0.2s;
            position: relative;

            .editableView-container-editing-oneLine,
            .editableView-container-editing {
                color: grey;
                padding: 10px;
            }

            .editableView-input:hover,
            .editableView-container-editing:hover,
            .editableView-container-editing-oneLine:hover {
                cursor: text
            }

            .editableView-input {
                padding: 12px 10px 11px 10px;
                border: 0px;
                color: grey;
                text-align: center;
                letter-spacing: 2px;
                outline-color: black;
            }
        }

        .collectionStackingView-sectionDelete {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
        }
    }

    .collectionStackingView-addDocumentButton,
    .collectionStackingView-addGroupButton {
        display: inline-block;
        margin: 0 5px;
        overflow: hidden;
        width: 90%;
        color: lightgrey;
        overflow: ellipses;

        .editableView-container-editing-oneLine,
        .editableView-container-editing {
            color: grey;
            padding: 10px;
        }

        .editableView-input:hover,
        .editableView-container-editing:hover,
        .editableView-container-editing-oneLine:hover {
            cursor: text
        }

        .editableView-input {
            outline-color: black;
            letter-spacing: 2px;
            color: grey;
            border: 0px;
            padding: 12px 10px 11px 10px;
        }
    }

    .collectionStackingView-addDocumentButton {
        font-size: 75%;
        letter-spacing: 2px;

        .editableView-input {
            outline-color: black;
            letter-spacing: 2px;
            color: grey;
            border: 0px;
            padding: 12px 10px 11px 10px;
        }
    }

    .collectionStackingView-addGroupButton {
        background: rgb(238, 238, 238);
        font-size: 75%;
        text-align: center;
        letter-spacing: 2px;
        height: fit-content;
    }
}