blue-react 8.3.1 → 8.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +164 -164
- package/README.md +59 -59
- package/dist/components/ActionMenu.js +2 -2
- package/dist/components/ActionMenuSwitch.js +2 -2
- package/dist/components/Body.js +2 -2
- package/dist/components/BodyRounded.js +2 -2
- package/dist/components/Caret.js +2 -2
- package/dist/components/DocumentView.js +2 -2
- package/dist/components/Grid.js +287 -287
- package/dist/components/Header.js +2 -2
- package/dist/components/HeaderTitle.js +3 -3
- package/dist/components/Intro.js +2 -2
- package/dist/components/Layout.js +19 -19
- package/dist/components/MenuItem.js +11 -3
- package/dist/components/Modal.js +5 -5
- package/dist/components/Outside.js +6 -6
- package/dist/components/Page.js +2 -2
- package/dist/components/Search.js +9 -5
- package/dist/components/SidebarMenu.js +2 -2
- package/dist/components/Switch.js +2 -2
- package/dist/components/Utilities.js +2 -2
- package/dist/style.css +4973 -8707
- package/dist/style.min.css +12 -10
- package/dist/style.scss +28 -28
- package/dist/styles/_action-menu.scss +81 -81
- package/dist/styles/_bootstrap-mixins_overwritten.scss +106 -106
- package/dist/styles/_bootstrap-optimizations.scss +13 -13
- package/dist/styles/_bootstrap-variables.scss +15 -15
- package/dist/styles/_bootstrap.scss +56 -56
- package/dist/styles/_caret.scss +50 -50
- package/dist/styles/_document-view.scss +6 -6
- package/dist/styles/_general.scss +177 -177
- package/dist/styles/_grid.scss +381 -381
- package/dist/styles/_hover.scss +42 -42
- package/dist/styles/_keyframes.scss +73 -73
- package/dist/styles/_mixins.scss +6 -6
- package/dist/styles/_router.scss +18 -18
- package/dist/styles/_search.scss +61 -61
- package/dist/styles/_status.scss +149 -149
- package/dist/styles/_switch.scss +21 -21
- package/dist/styles/_tooltips.scss +189 -189
- package/dist/styles/_variables.scss +97 -97
- package/dist/styles/mixins/_action-menu.scss +68 -68
- package/dist/styles/mixins/_custom-property.scss +10 -10
- package/dist/styles/mixins/_misc.scss +33 -33
- package/dist/styles/mixins/_scroll-shadow.scss +9 -9
- package/dist/styles/mixins/_sidebar.scss +156 -156
- package/dist/styles/mixins/_switch.scss +85 -85
- package/dist/types/components/ActionMenu.d.ts +22 -22
- package/dist/types/components/ActionMenuSwitch.d.ts +11 -11
- package/dist/types/components/Body.d.ts +21 -21
- package/dist/types/components/BodyRounded.d.ts +10 -10
- package/dist/types/components/Caret.d.ts +16 -16
- package/dist/types/components/DocumentView.d.ts +23 -23
- package/dist/types/components/Grid.d.ts +110 -110
- package/dist/types/components/Header.d.ts +8 -8
- package/dist/types/components/HeaderTitle.d.ts +29 -29
- package/dist/types/components/Intro.d.ts +23 -23
- package/dist/types/components/Layout.d.ts +120 -120
- package/dist/types/components/MenuItem.d.ts +101 -69
- package/dist/types/components/Modal.d.ts +25 -25
- package/dist/types/components/ModalProvider.d.ts +11 -11
- package/dist/types/components/Outside.d.ts +14 -14
- package/dist/types/components/Page.d.ts +12 -12
- package/dist/types/components/Search.d.ts +32 -30
- package/dist/types/components/SidebarMenu.d.ts +32 -32
- package/dist/types/components/Status.d.ts +12 -12
- package/dist/types/components/StatusProvider.d.ts +15 -15
- package/dist/types/components/Switch.d.ts +21 -21
- package/dist/types/components/Utilities.d.ts +17 -17
- package/dist/types/components/shared.d.ts +15 -15
- package/index.d.ts +65 -65
- package/index.js +27 -27
- package/package.json +88 -88
package/dist/styles/_grid.scss
CHANGED
|
@@ -1,381 +1,381 @@
|
|
|
1
|
-
.blue-layout {
|
|
2
|
-
position: relative;
|
|
3
|
-
min-height: 100vh;
|
|
4
|
-
|
|
5
|
-
&.hasNoSidebarMenu {
|
|
6
|
-
.blue-page,
|
|
7
|
-
.blue-header {
|
|
8
|
-
padding-left: 0;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.blue-sidebar-toggler {
|
|
12
|
-
display: none;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.blue-page {
|
|
16
|
-
margin-left: 0;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.blue-header-extension {
|
|
20
|
-
left: 0;
|
|
21
|
-
padding-right: 0;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
&.open {
|
|
26
|
-
@media screen and (max-width: 1400px) {
|
|
27
|
-
.router-page.active {
|
|
28
|
-
.blue-page {
|
|
29
|
-
filter: blur(3px) brightness(0.8);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
@include openSidebarMenu();
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
&:not(.open) {
|
|
38
|
-
.blue-sidebar-visible-on-open {
|
|
39
|
-
display: none;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.blue-sidebar-hidden-on-open {
|
|
43
|
-
animation: fade-in 1s;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.blue-header-wrapper {
|
|
49
|
-
position: absolute;
|
|
50
|
-
top: 0;
|
|
51
|
-
right: 0;
|
|
52
|
-
bottom: 0;
|
|
53
|
-
left: 0;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.blue-sidebar-toggler {
|
|
57
|
-
position: fixed;
|
|
58
|
-
width: $normal-size;
|
|
59
|
-
height: $normal-size;
|
|
60
|
-
left: 0;
|
|
61
|
-
top: 0;
|
|
62
|
-
z-index: 3;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.blue-header {
|
|
66
|
-
@include header-bg();
|
|
67
|
-
color: $header-color;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
// .blue-layout:not(.wrapper-in) .blue-header {
|
|
71
|
-
// overflow: hidden;
|
|
72
|
-
// }
|
|
73
|
-
|
|
74
|
-
.blue-header {
|
|
75
|
-
height: $normal-size;
|
|
76
|
-
position: fixed;
|
|
77
|
-
top: 0;
|
|
78
|
-
left: $normal-size;
|
|
79
|
-
right: 0;
|
|
80
|
-
z-index: 4;
|
|
81
|
-
|
|
82
|
-
@media screen and (min-width: 768px) {
|
|
83
|
-
right: $scrollbar-size;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.navbar-nav {
|
|
87
|
-
margin: 0;
|
|
88
|
-
|
|
89
|
-
> li {
|
|
90
|
-
float: left;
|
|
91
|
-
|
|
92
|
-
> a {
|
|
93
|
-
background-color: transparent;
|
|
94
|
-
color: $header-color;
|
|
95
|
-
padding: $bla-header-nav-padding;
|
|
96
|
-
|
|
97
|
-
&:hover,
|
|
98
|
-
&:focus {
|
|
99
|
-
background-color: $bla-button-bg-hover;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.navbar-left {
|
|
106
|
-
float: left !important;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
.navbar-right {
|
|
110
|
-
float: right !important;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.blue-search {
|
|
114
|
-
width: 16rem;
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.blue-normal-scrollbar,
|
|
119
|
-
.modal-body,
|
|
120
|
-
.blue-page {
|
|
121
|
-
@include custom-scrollbar($body-color, $body-bg, 0.3rem);
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.blue-page {
|
|
125
|
-
margin-left: $normal-size;
|
|
126
|
-
animation: enabledBlueAppPage 0.5s;
|
|
127
|
-
|
|
128
|
-
&::before,
|
|
129
|
-
&::after {
|
|
130
|
-
content: "";
|
|
131
|
-
display: table;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
@include blue-sidebar($normal-size);
|
|
136
|
-
|
|
137
|
-
@media (max-width: 600px) {
|
|
138
|
-
@include blue-sidebar(0);
|
|
139
|
-
.blue-layout:not(.open) .blue-sidebar {
|
|
140
|
-
left: -$normal-size;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.blue-page {
|
|
144
|
-
margin-left: 0;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.blue-layout.disableHeaders {
|
|
148
|
-
.blue-page {
|
|
149
|
-
padding-top: $normal-size;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.blue-sidebar-toggler {
|
|
154
|
-
transition: transform 0.5s;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.blue-layout:not(.open).disableHeaders .blue-sidebar-toggler {
|
|
158
|
-
transform: translate(0.25rem, 0.25rem);
|
|
159
|
-
border-radius: $border-radius;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
@media (min-width: 1400px) {
|
|
164
|
-
.blue-layout.expandSidebar {
|
|
165
|
-
@include openSidebarMenu();
|
|
166
|
-
|
|
167
|
-
.blue-sidebar {
|
|
168
|
-
box-shadow: none !important;
|
|
169
|
-
// background: transparent;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
.blue-page {
|
|
173
|
-
margin-left: $bla-sidebar-width;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
.blue-sidebar-toggler {
|
|
177
|
-
display: none;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
.blue-header {
|
|
181
|
-
left: 0;
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.blue-layout .blue-header-logo {
|
|
186
|
-
padding-left: $spacer;
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.blue-open-menu {
|
|
191
|
-
position: absolute !important;
|
|
192
|
-
margin-top: 0 !important;
|
|
193
|
-
left: 0;
|
|
194
|
-
justify-content: center;
|
|
195
|
-
|
|
196
|
-
&,
|
|
197
|
-
&:hover,
|
|
198
|
-
&:focus {
|
|
199
|
-
color: $sidebar-color;
|
|
200
|
-
background-color: $sidebar-bg;
|
|
201
|
-
border-color: transparent;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
.blue-sidebar {
|
|
206
|
-
@include custom-scrollbar($sidebar-color, $sidebar-bg, 0.3rem);
|
|
207
|
-
overflow-y: auto;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
.blue-sidebar-bottom {
|
|
211
|
-
width: auto;
|
|
212
|
-
background-color: var(--sidebar-bg);
|
|
213
|
-
transition: box-shadow 0.2s;
|
|
214
|
-
|
|
215
|
-
&.has-shadow {
|
|
216
|
-
box-shadow: 0 -2rem 2rem rgba(black, 0.1);
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
.blue-page {
|
|
221
|
-
background-color: $body-bg;
|
|
222
|
-
min-height: calc(100vh - #{$normal-size});
|
|
223
|
-
margin-top: $normal-size;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
.blue-layout.disableHeaders {
|
|
227
|
-
.blue-page {
|
|
228
|
-
margin-top: initial;
|
|
229
|
-
min-height: calc(100vh);
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.blue-header-logo {
|
|
234
|
-
padding: 0.625rem 0.938rem;
|
|
235
|
-
margin: 0;
|
|
236
|
-
cursor: default;
|
|
237
|
-
display: inline-block;
|
|
238
|
-
font-weight: 300;
|
|
239
|
-
font-size: $bla-header-logo-font-size;
|
|
240
|
-
position: absolute;
|
|
241
|
-
z-index: 1;
|
|
242
|
-
|
|
243
|
-
a {
|
|
244
|
-
color: inherit;
|
|
245
|
-
|
|
246
|
-
&:focus {
|
|
247
|
-
text-decoration: none;
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.blue-header-logo-image {
|
|
253
|
-
width: 2rem;
|
|
254
|
-
height: 2rem;
|
|
255
|
-
margin-top: -0.25rem;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
.blue-menu-item {
|
|
259
|
-
transition: width 0.5s, background-color 0.3s, color 0.15s, box-shadow 0.3s, opacity 0.3s !important;
|
|
260
|
-
padding: 0.5rem 0.75rem;
|
|
261
|
-
border: none;
|
|
262
|
-
margin-top: 0.125rem;
|
|
263
|
-
margin-bottom: 0.125rem;
|
|
264
|
-
|
|
265
|
-
&:hover {
|
|
266
|
-
box-shadow: none !important;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
&:focus {
|
|
270
|
-
box-shadow: none;
|
|
271
|
-
}
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
.blue-menu-item-label {
|
|
275
|
-
display: none;
|
|
276
|
-
max-height: 100%;
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
.blue-menu-item-icon {
|
|
280
|
-
display: inline-block;
|
|
281
|
-
|
|
282
|
-
& > * {
|
|
283
|
-
display: block;
|
|
284
|
-
width: 1.5rem;
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
.blue-menu-item-icon.iconForActive {
|
|
289
|
-
display: none;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
.blue-menu-item.active {
|
|
293
|
-
.blue-menu-item-icon.hasIconForActive {
|
|
294
|
-
display: none;
|
|
295
|
-
}
|
|
296
|
-
.blue-menu-item-icon.iconForActive {
|
|
297
|
-
display: inline-block;
|
|
298
|
-
}
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
.blue-menu-item-dropdown {
|
|
302
|
-
margin-left: 1rem;
|
|
303
|
-
animation: blue-menu-item-dropdown 0.15s;
|
|
304
|
-
position: relative;
|
|
305
|
-
|
|
306
|
-
&::before {
|
|
307
|
-
content: "";
|
|
308
|
-
position: absolute;
|
|
309
|
-
top: 0.125rem;
|
|
310
|
-
right: 0.125rem;
|
|
311
|
-
bottom: 0.125rem;
|
|
312
|
-
left: 0.125rem;
|
|
313
|
-
border-radius: $border-radius;
|
|
314
|
-
box-shadow: $box-shadow;
|
|
315
|
-
}
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.blue-sidebar .blue-menu-item-dropdown {
|
|
319
|
-
--sidebar-bg: #{$sidebar-deep-bg};
|
|
320
|
-
|
|
321
|
-
&::before {
|
|
322
|
-
background-color: var(--sidebar-bg);
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.blue-menu-item-dropdown {
|
|
326
|
-
--sidebar-bg: #{darken($sidebar-deep-bg, 4%)};
|
|
327
|
-
|
|
328
|
-
.blue-menu-item-dropdown {
|
|
329
|
-
--sidebar-bg: #{darken($sidebar-deep-bg, 8%)};
|
|
330
|
-
|
|
331
|
-
.blue-menu-item-dropdown {
|
|
332
|
-
--sidebar-bg: #{darken($sidebar-deep-bg, 12%)};
|
|
333
|
-
|
|
334
|
-
.blue-menu-item-dropdown {
|
|
335
|
-
--sidebar-bg: #{darken($sidebar-deep-bg, 16%)};
|
|
336
|
-
|
|
337
|
-
.blue-menu-item-dropdown {
|
|
338
|
-
--sidebar-bg: #{darken($sidebar-deep-bg, 20%)};
|
|
339
|
-
}
|
|
340
|
-
}
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
}
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
.blue-header .blue-menu-item-dropdown {
|
|
347
|
-
--sidebar-bg: #{$header-deep-bg};
|
|
348
|
-
|
|
349
|
-
&::before {
|
|
350
|
-
background-color: var(--header-bg);
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
.blue-menu-item-dropdown {
|
|
354
|
-
--sidebar-bg: #{darken($header-deep-bg, 4%)};
|
|
355
|
-
|
|
356
|
-
.blue-menu-item-dropdown {
|
|
357
|
-
--sidebar-bg: #{darken($header-deep-bg, 8%)};
|
|
358
|
-
|
|
359
|
-
.blue-menu-item-dropdown {
|
|
360
|
-
--sidebar-bg: #{darken($header-deep-bg, 12%)};
|
|
361
|
-
|
|
362
|
-
.blue-menu-item-dropdown {
|
|
363
|
-
--sidebar-bg: #{darken($header-deep-bg, 16%)};
|
|
364
|
-
|
|
365
|
-
.blue-menu-item-dropdown {
|
|
366
|
-
--sidebar-bg: #{darken($header-deep-bg, 20%)};
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
.blue-menu-item-dropdown-caret.caret {
|
|
375
|
-
display: none;
|
|
376
|
-
position: absolute;
|
|
377
|
-
right: 1.5rem;
|
|
378
|
-
top: 50%;
|
|
379
|
-
transform: translateY(-50%);
|
|
380
|
-
align-items: center;
|
|
381
|
-
}
|
|
1
|
+
.blue-layout {
|
|
2
|
+
position: relative;
|
|
3
|
+
min-height: 100vh;
|
|
4
|
+
|
|
5
|
+
&.hasNoSidebarMenu {
|
|
6
|
+
.blue-page,
|
|
7
|
+
.blue-header {
|
|
8
|
+
padding-left: 0;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.blue-sidebar-toggler {
|
|
12
|
+
display: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.blue-page {
|
|
16
|
+
margin-left: 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.blue-header-extension {
|
|
20
|
+
left: 0;
|
|
21
|
+
padding-right: 0;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&.open {
|
|
26
|
+
@media screen and (max-width: 1400px) {
|
|
27
|
+
.router-page.active {
|
|
28
|
+
.blue-page {
|
|
29
|
+
filter: blur(3px) brightness(0.8);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@include openSidebarMenu();
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&:not(.open) {
|
|
38
|
+
.blue-sidebar-visible-on-open {
|
|
39
|
+
display: none;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.blue-sidebar-hidden-on-open {
|
|
43
|
+
animation: fade-in 1s;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.blue-header-wrapper {
|
|
49
|
+
position: absolute;
|
|
50
|
+
top: 0;
|
|
51
|
+
right: 0;
|
|
52
|
+
bottom: 0;
|
|
53
|
+
left: 0;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.blue-sidebar-toggler {
|
|
57
|
+
position: fixed;
|
|
58
|
+
width: $normal-size;
|
|
59
|
+
height: $normal-size;
|
|
60
|
+
left: 0;
|
|
61
|
+
top: 0;
|
|
62
|
+
z-index: 3;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.blue-header {
|
|
66
|
+
@include header-bg();
|
|
67
|
+
color: $header-color;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// .blue-layout:not(.wrapper-in) .blue-header {
|
|
71
|
+
// overflow: hidden;
|
|
72
|
+
// }
|
|
73
|
+
|
|
74
|
+
.blue-header {
|
|
75
|
+
height: $normal-size;
|
|
76
|
+
position: fixed;
|
|
77
|
+
top: 0;
|
|
78
|
+
left: $normal-size;
|
|
79
|
+
right: 0;
|
|
80
|
+
z-index: 4;
|
|
81
|
+
|
|
82
|
+
@media screen and (min-width: 768px) {
|
|
83
|
+
right: $scrollbar-size;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.navbar-nav {
|
|
87
|
+
margin: 0;
|
|
88
|
+
|
|
89
|
+
> li {
|
|
90
|
+
float: left;
|
|
91
|
+
|
|
92
|
+
> a {
|
|
93
|
+
background-color: transparent;
|
|
94
|
+
color: $header-color;
|
|
95
|
+
padding: $bla-header-nav-padding;
|
|
96
|
+
|
|
97
|
+
&:hover,
|
|
98
|
+
&:focus {
|
|
99
|
+
background-color: $bla-button-bg-hover;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.navbar-left {
|
|
106
|
+
float: left !important;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.navbar-right {
|
|
110
|
+
float: right !important;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.blue-search {
|
|
114
|
+
width: 16rem;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.blue-normal-scrollbar,
|
|
119
|
+
.modal-body,
|
|
120
|
+
.blue-page {
|
|
121
|
+
@include custom-scrollbar($body-color, $body-bg, 0.3rem);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.blue-page {
|
|
125
|
+
margin-left: $normal-size;
|
|
126
|
+
animation: enabledBlueAppPage 0.5s;
|
|
127
|
+
|
|
128
|
+
&::before,
|
|
129
|
+
&::after {
|
|
130
|
+
content: "";
|
|
131
|
+
display: table;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
@include blue-sidebar($normal-size);
|
|
136
|
+
|
|
137
|
+
@media (max-width: 600px) {
|
|
138
|
+
@include blue-sidebar(0);
|
|
139
|
+
.blue-layout:not(.open) .blue-sidebar {
|
|
140
|
+
left: -$normal-size;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.blue-page {
|
|
144
|
+
margin-left: 0;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.blue-layout.disableHeaders {
|
|
148
|
+
.blue-page {
|
|
149
|
+
padding-top: $normal-size;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.blue-sidebar-toggler {
|
|
154
|
+
transition: transform 0.5s;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.blue-layout:not(.open).disableHeaders .blue-sidebar-toggler {
|
|
158
|
+
transform: translate(0.25rem, 0.25rem);
|
|
159
|
+
border-radius: $border-radius;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
@media (min-width: 1400px) {
|
|
164
|
+
.blue-layout.expandSidebar {
|
|
165
|
+
@include openSidebarMenu();
|
|
166
|
+
|
|
167
|
+
.blue-sidebar {
|
|
168
|
+
box-shadow: none !important;
|
|
169
|
+
// background: transparent;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.blue-page {
|
|
173
|
+
margin-left: $bla-sidebar-width;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.blue-sidebar-toggler {
|
|
177
|
+
display: none;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.blue-header {
|
|
181
|
+
left: 0;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.blue-layout .blue-header-logo {
|
|
186
|
+
padding-left: $spacer;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.blue-open-menu {
|
|
191
|
+
position: absolute !important;
|
|
192
|
+
margin-top: 0 !important;
|
|
193
|
+
left: 0;
|
|
194
|
+
justify-content: center;
|
|
195
|
+
|
|
196
|
+
&,
|
|
197
|
+
&:hover,
|
|
198
|
+
&:focus {
|
|
199
|
+
color: $sidebar-color;
|
|
200
|
+
background-color: $sidebar-bg;
|
|
201
|
+
border-color: transparent;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.blue-sidebar {
|
|
206
|
+
@include custom-scrollbar($sidebar-color, $sidebar-bg, 0.3rem);
|
|
207
|
+
overflow-y: auto;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.blue-sidebar-bottom {
|
|
211
|
+
width: auto;
|
|
212
|
+
background-color: var(--sidebar-bg);
|
|
213
|
+
transition: box-shadow 0.2s;
|
|
214
|
+
|
|
215
|
+
&.has-shadow {
|
|
216
|
+
box-shadow: 0 -2rem 2rem rgba(black, 0.1);
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.blue-page {
|
|
221
|
+
background-color: $body-bg;
|
|
222
|
+
min-height: calc(100vh - #{$normal-size});
|
|
223
|
+
margin-top: $normal-size;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.blue-layout.disableHeaders {
|
|
227
|
+
.blue-page {
|
|
228
|
+
margin-top: initial;
|
|
229
|
+
min-height: calc(100vh);
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.blue-header-logo {
|
|
234
|
+
padding: 0.625rem 0.938rem;
|
|
235
|
+
margin: 0;
|
|
236
|
+
cursor: default;
|
|
237
|
+
display: inline-block;
|
|
238
|
+
font-weight: 300;
|
|
239
|
+
font-size: $bla-header-logo-font-size;
|
|
240
|
+
position: absolute;
|
|
241
|
+
z-index: 1;
|
|
242
|
+
|
|
243
|
+
a {
|
|
244
|
+
color: inherit;
|
|
245
|
+
|
|
246
|
+
&:focus {
|
|
247
|
+
text-decoration: none;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.blue-header-logo-image {
|
|
253
|
+
width: 2rem;
|
|
254
|
+
height: 2rem;
|
|
255
|
+
margin-top: -0.25rem;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.blue-menu-item {
|
|
259
|
+
transition: width 0.5s, background-color 0.3s, color 0.15s, box-shadow 0.3s, opacity 0.3s !important;
|
|
260
|
+
padding: 0.5rem 0.75rem;
|
|
261
|
+
border: none;
|
|
262
|
+
margin-top: 0.125rem;
|
|
263
|
+
margin-bottom: 0.125rem;
|
|
264
|
+
|
|
265
|
+
&:hover {
|
|
266
|
+
box-shadow: none !important;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
&:focus {
|
|
270
|
+
box-shadow: none;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.blue-menu-item-label {
|
|
275
|
+
display: none;
|
|
276
|
+
max-height: 100%;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.blue-menu-item-icon {
|
|
280
|
+
display: inline-block;
|
|
281
|
+
|
|
282
|
+
& > * {
|
|
283
|
+
display: block;
|
|
284
|
+
width: 1.5rem;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.blue-menu-item-icon.iconForActive {
|
|
289
|
+
display: none;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.blue-menu-item.active {
|
|
293
|
+
.blue-menu-item-icon.hasIconForActive {
|
|
294
|
+
display: none;
|
|
295
|
+
}
|
|
296
|
+
.blue-menu-item-icon.iconForActive {
|
|
297
|
+
display: inline-block;
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.blue-menu-item-dropdown {
|
|
302
|
+
margin-left: 1rem;
|
|
303
|
+
animation: blue-menu-item-dropdown 0.15s;
|
|
304
|
+
position: relative;
|
|
305
|
+
|
|
306
|
+
&::before {
|
|
307
|
+
content: "";
|
|
308
|
+
position: absolute;
|
|
309
|
+
top: 0.125rem;
|
|
310
|
+
right: 0.125rem;
|
|
311
|
+
bottom: 0.125rem;
|
|
312
|
+
left: 0.125rem;
|
|
313
|
+
border-radius: $border-radius;
|
|
314
|
+
box-shadow: $box-shadow;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.blue-sidebar .blue-menu-item-dropdown {
|
|
319
|
+
--sidebar-bg: #{$sidebar-deep-bg};
|
|
320
|
+
|
|
321
|
+
&::before {
|
|
322
|
+
background-color: var(--sidebar-bg);
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.blue-menu-item-dropdown {
|
|
326
|
+
--sidebar-bg: #{darken($sidebar-deep-bg, 4%)};
|
|
327
|
+
|
|
328
|
+
.blue-menu-item-dropdown {
|
|
329
|
+
--sidebar-bg: #{darken($sidebar-deep-bg, 8%)};
|
|
330
|
+
|
|
331
|
+
.blue-menu-item-dropdown {
|
|
332
|
+
--sidebar-bg: #{darken($sidebar-deep-bg, 12%)};
|
|
333
|
+
|
|
334
|
+
.blue-menu-item-dropdown {
|
|
335
|
+
--sidebar-bg: #{darken($sidebar-deep-bg, 16%)};
|
|
336
|
+
|
|
337
|
+
.blue-menu-item-dropdown {
|
|
338
|
+
--sidebar-bg: #{darken($sidebar-deep-bg, 20%)};
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.blue-header .blue-menu-item-dropdown {
|
|
347
|
+
--sidebar-bg: #{$header-deep-bg};
|
|
348
|
+
|
|
349
|
+
&::before {
|
|
350
|
+
background-color: var(--header-bg);
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.blue-menu-item-dropdown {
|
|
354
|
+
--sidebar-bg: #{darken($header-deep-bg, 4%)};
|
|
355
|
+
|
|
356
|
+
.blue-menu-item-dropdown {
|
|
357
|
+
--sidebar-bg: #{darken($header-deep-bg, 8%)};
|
|
358
|
+
|
|
359
|
+
.blue-menu-item-dropdown {
|
|
360
|
+
--sidebar-bg: #{darken($header-deep-bg, 12%)};
|
|
361
|
+
|
|
362
|
+
.blue-menu-item-dropdown {
|
|
363
|
+
--sidebar-bg: #{darken($header-deep-bg, 16%)};
|
|
364
|
+
|
|
365
|
+
.blue-menu-item-dropdown {
|
|
366
|
+
--sidebar-bg: #{darken($header-deep-bg, 20%)};
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.blue-menu-item-dropdown-caret.caret {
|
|
375
|
+
display: none;
|
|
376
|
+
position: absolute;
|
|
377
|
+
right: 1.5rem;
|
|
378
|
+
top: 50%;
|
|
379
|
+
transform: translateY(-50%);
|
|
380
|
+
align-items: center;
|
|
381
|
+
}
|