power-compass 0.2.1 → 0.3.0
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.
- checksums.yaml +4 -4
- data/Rakefile +25 -0
- data/app/assets/stylesheets/compass/layout.scss +41 -0
- data/app/assets/stylesheets/compass/navigation/_all.scss +6 -0
- data/app/assets/stylesheets/compass/navigation/_header.scss +168 -0
- data/app/assets/stylesheets/compass/navigation/_label.scss +31 -0
- data/app/assets/stylesheets/compass/navigation/_main-page-content.scss +61 -0
- data/app/assets/stylesheets/compass/navigation/_recent-crumbs.scss +17 -0
- data/app/assets/stylesheets/compass/navigation/_sidebar.scss +123 -0
- data/app/assets/stylesheets/compass/navigation/_spinner.scss +27 -0
- data/app/components/compass/application_component.rb +8 -0
- data/app/components/compass/layout/banner.html.erb +3 -0
- data/app/components/compass/layout/banner.rb +14 -0
- data/app/components/compass/layout/breadcrumb_item.html.erb +20 -0
- data/app/components/compass/layout/breadcrumb_item.rb +19 -0
- data/app/components/compass/layout/breadcrumbs.html.erb +14 -0
- data/app/components/compass/layout/breadcrumbs.rb +9 -0
- data/app/components/compass/layout/content_container_component.html.erb +3 -0
- data/app/components/compass/layout/content_container_component.rb +9 -0
- data/app/components/compass/layout/header/dropdown_menu.html.erb +15 -0
- data/app/components/compass/layout/header/dropdown_menu.rb +36 -0
- data/app/components/compass/layout/header/logo.html.erb +8 -0
- data/app/components/compass/layout/header/logo.rb +17 -0
- data/app/components/compass/layout/header/search_input.html.erb +1 -0
- data/app/components/compass/layout/header/search_input.rb +11 -0
- data/app/components/compass/layout/header/tasks_menu.html.erb +3 -0
- data/app/components/compass/layout/header/tasks_menu.rb +12 -0
- data/app/components/compass/layout/header.html.erb +23 -0
- data/app/components/compass/layout/header.rb +32 -0
- data/app/components/compass/layout/impersonation_banner.html.erb +3 -0
- data/app/components/compass/layout/impersonation_banner.rb +9 -0
- data/app/components/compass/layout/sidebar.html.erb +5 -0
- data/app/components/compass/layout/sidebar.rb +9 -0
- data/app/components/compass/layout.html.erb +51 -0
- data/app/components/compass/layout.rb +44 -0
- data/app/components/concerns/compass/config_props.rb +20 -0
- data/app/controllers/compass/application_controller.rb +6 -11
- data/app/controllers/compass/info_controller.rb +12 -0
- data/app/controllers/compass/notification_controller.rb +8 -2
- data/config/routes.rb +2 -0
- data/lib/compass/configuration.rb +1 -0
- data/lib/compass/engine.rb +16 -0
- data/lib/compass/notification/provider.rb +14 -3
- data/lib/compass/search/provider.rb +1 -4
- data/lib/compass/version.rb +1 -1
- data/vendor/assets/stylesheets/compass/layout.css +843 -0
- metadata +57 -1
|
@@ -0,0 +1,843 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
/* Default Equations */
|
|
3
|
+
/* Penner Equations (approximated) originally created by @robpenner */
|
|
4
|
+
/* Accessible color tokens (WCAG-compliant) — defined in _colors_accessible.scss */
|
|
5
|
+
/*=====================================
|
|
6
|
+
Accessible Color Tokens (WCAG-compliant)
|
|
7
|
+
Source of truth for new color tokens, starting with accessible text, border, input, and status colors.
|
|
8
|
+
Do not document base values; document usage only.
|
|
9
|
+
=====================================*/
|
|
10
|
+
/* Text Colors ----------------------*/
|
|
11
|
+
/* Input Text & Icon Colors ----------------------*/
|
|
12
|
+
/* Input Background Colors ----------------------*/
|
|
13
|
+
/* Input Border Colors ----------------------*/
|
|
14
|
+
/* Status Text and Icon colors ----------------------*/
|
|
15
|
+
/* Status Background colors ----------------------*/
|
|
16
|
+
/* Status Icon Background colors ----------------------*/
|
|
17
|
+
/* Status Border colors ----------------------*/
|
|
18
|
+
/*=====================================
|
|
19
|
+
Base colors should not be documented.
|
|
20
|
+
Only document color use.
|
|
21
|
+
|
|
22
|
+
Colors -----------------------------*/
|
|
23
|
+
/* Specialty Gradient -----------------*/
|
|
24
|
+
/* Interface colors -------------------*/
|
|
25
|
+
/* Main colors ------------------------*/
|
|
26
|
+
/*=====================================
|
|
27
|
+
|
|
28
|
+
Background colors ------------------*/
|
|
29
|
+
/* Card colors ------------------*/
|
|
30
|
+
/* Active colors ----------------------*/
|
|
31
|
+
/* Hover colors -----------------------*/
|
|
32
|
+
/* Focus colors -----------------------*/
|
|
33
|
+
/* Border colors ----------------------*/
|
|
34
|
+
/* Shadow colors ----------------------*/
|
|
35
|
+
/* Text colors ------------------------*/
|
|
36
|
+
/* Data colors ------------------------*/
|
|
37
|
+
/* Status colors ----------------------*/
|
|
38
|
+
/* Link colors ------------------------*/
|
|
39
|
+
/* Product colors ---------------------*/
|
|
40
|
+
/* Category colors ---------------------*/
|
|
41
|
+
/* Accessible color tokens (WCAG-compliant) — defined in _colors_accessible.scss */
|
|
42
|
+
/*=====================================
|
|
43
|
+
Accessible Color Tokens (WCAG-compliant)
|
|
44
|
+
Source of truth for new color tokens, starting with accessible text, border, input, and status colors.
|
|
45
|
+
Do not document base values; document usage only.
|
|
46
|
+
=====================================*/
|
|
47
|
+
/* Text Colors ----------------------*/
|
|
48
|
+
/* Input Text & Icon Colors ----------------------*/
|
|
49
|
+
/* Input Background Colors ----------------------*/
|
|
50
|
+
/* Input Border Colors ----------------------*/
|
|
51
|
+
/* Status Text and Icon colors ----------------------*/
|
|
52
|
+
/* Status Background colors ----------------------*/
|
|
53
|
+
/* Status Icon Background colors ----------------------*/
|
|
54
|
+
/* Status Border colors ----------------------*/
|
|
55
|
+
/*=====================================
|
|
56
|
+
Base colors should not be documented.
|
|
57
|
+
Only document color use.
|
|
58
|
+
|
|
59
|
+
Colors -----------------------------*/
|
|
60
|
+
/* Specialty Gradient -----------------*/
|
|
61
|
+
/* Interface colors -------------------*/
|
|
62
|
+
/* Main colors ------------------------*/
|
|
63
|
+
/*=====================================
|
|
64
|
+
|
|
65
|
+
Background colors ------------------*/
|
|
66
|
+
/* Card colors ------------------*/
|
|
67
|
+
/* Active colors ----------------------*/
|
|
68
|
+
/* Hover colors -----------------------*/
|
|
69
|
+
/* Focus colors -----------------------*/
|
|
70
|
+
/* Border colors ----------------------*/
|
|
71
|
+
/* Shadow colors ----------------------*/
|
|
72
|
+
/* Text colors ------------------------*/
|
|
73
|
+
/* Data colors ------------------------*/
|
|
74
|
+
/* Status colors ----------------------*/
|
|
75
|
+
/* Link colors ------------------------*/
|
|
76
|
+
/* Product colors ---------------------*/
|
|
77
|
+
/* Category colors ---------------------*/
|
|
78
|
+
/* Accessible color tokens (WCAG-compliant) — defined in _colors_accessible.scss */
|
|
79
|
+
/*=====================================
|
|
80
|
+
Accessible Color Tokens (WCAG-compliant)
|
|
81
|
+
Source of truth for new color tokens, starting with accessible text, border, input, and status colors.
|
|
82
|
+
Do not document base values; document usage only.
|
|
83
|
+
=====================================*/
|
|
84
|
+
/* Text Colors ----------------------*/
|
|
85
|
+
/* Input Text & Icon Colors ----------------------*/
|
|
86
|
+
/* Input Background Colors ----------------------*/
|
|
87
|
+
/* Input Border Colors ----------------------*/
|
|
88
|
+
/* Status Text and Icon colors ----------------------*/
|
|
89
|
+
/* Status Background colors ----------------------*/
|
|
90
|
+
/* Status Icon Background colors ----------------------*/
|
|
91
|
+
/* Status Border colors ----------------------*/
|
|
92
|
+
/*=====================================
|
|
93
|
+
Base colors should not be documented.
|
|
94
|
+
Only document color use.
|
|
95
|
+
|
|
96
|
+
Colors -----------------------------*/
|
|
97
|
+
/* Specialty Gradient -----------------*/
|
|
98
|
+
/* Interface colors -------------------*/
|
|
99
|
+
/* Main colors ------------------------*/
|
|
100
|
+
/*=====================================
|
|
101
|
+
|
|
102
|
+
Background colors ------------------*/
|
|
103
|
+
/* Card colors ------------------*/
|
|
104
|
+
/* Active colors ----------------------*/
|
|
105
|
+
/* Hover colors -----------------------*/
|
|
106
|
+
/* Focus colors -----------------------*/
|
|
107
|
+
/* Border colors ----------------------*/
|
|
108
|
+
/* Shadow colors ----------------------*/
|
|
109
|
+
/* Text colors ------------------------*/
|
|
110
|
+
/* Data colors ------------------------*/
|
|
111
|
+
/* Status colors ----------------------*/
|
|
112
|
+
/* Link colors ------------------------*/
|
|
113
|
+
/* Product colors ---------------------*/
|
|
114
|
+
/* Category colors ---------------------*/
|
|
115
|
+
/* CLEAN UP AND REMOVE */
|
|
116
|
+
/* Headings */
|
|
117
|
+
/* Standard Font Weights */
|
|
118
|
+
/* Non_Standard Font Weights */
|
|
119
|
+
/* Link Colors */
|
|
120
|
+
/* Accessible color tokens (WCAG-compliant) — defined in _colors_accessible.scss */
|
|
121
|
+
/*=====================================
|
|
122
|
+
Accessible Color Tokens (WCAG-compliant)
|
|
123
|
+
Source of truth for new color tokens, starting with accessible text, border, input, and status colors.
|
|
124
|
+
Do not document base values; document usage only.
|
|
125
|
+
=====================================*/
|
|
126
|
+
/* Text Colors ----------------------*/
|
|
127
|
+
/* Input Text & Icon Colors ----------------------*/
|
|
128
|
+
/* Input Background Colors ----------------------*/
|
|
129
|
+
/* Input Border Colors ----------------------*/
|
|
130
|
+
/* Status Text and Icon colors ----------------------*/
|
|
131
|
+
/* Status Background colors ----------------------*/
|
|
132
|
+
/* Status Icon Background colors ----------------------*/
|
|
133
|
+
/* Status Border colors ----------------------*/
|
|
134
|
+
/*=====================================
|
|
135
|
+
Base colors should not be documented.
|
|
136
|
+
Only document color use.
|
|
137
|
+
|
|
138
|
+
Colors -----------------------------*/
|
|
139
|
+
/* Specialty Gradient -----------------*/
|
|
140
|
+
/* Interface colors -------------------*/
|
|
141
|
+
/* Main colors ------------------------*/
|
|
142
|
+
/*=====================================
|
|
143
|
+
|
|
144
|
+
Background colors ------------------*/
|
|
145
|
+
/* Card colors ------------------*/
|
|
146
|
+
/* Active colors ----------------------*/
|
|
147
|
+
/* Hover colors -----------------------*/
|
|
148
|
+
/* Focus colors -----------------------*/
|
|
149
|
+
/* Border colors ----------------------*/
|
|
150
|
+
/* Shadow colors ----------------------*/
|
|
151
|
+
/* Text colors ------------------------*/
|
|
152
|
+
/* Data colors ------------------------*/
|
|
153
|
+
/* Status colors ----------------------*/
|
|
154
|
+
/* Link colors ------------------------*/
|
|
155
|
+
/* Product colors ---------------------*/
|
|
156
|
+
/* Category colors ---------------------*/
|
|
157
|
+
/* line 7, ../../app/assets/stylesheets/compass/navigation/_recent-crumbs.scss */
|
|
158
|
+
.nitro-navigation #main-crumbs {
|
|
159
|
+
background: #05274f;
|
|
160
|
+
padding: 0;
|
|
161
|
+
border: 0;
|
|
162
|
+
border-radius: 0;
|
|
163
|
+
height: 30px;
|
|
164
|
+
min-height: 30px;
|
|
165
|
+
margin: 0;
|
|
166
|
+
overflow: hidden;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
/* Accessible color tokens (WCAG-compliant) — defined in _colors_accessible.scss */
|
|
170
|
+
/*=====================================
|
|
171
|
+
Accessible Color Tokens (WCAG-compliant)
|
|
172
|
+
Source of truth for new color tokens, starting with accessible text, border, input, and status colors.
|
|
173
|
+
Do not document base values; document usage only.
|
|
174
|
+
=====================================*/
|
|
175
|
+
/* Text Colors ----------------------*/
|
|
176
|
+
/* Input Text & Icon Colors ----------------------*/
|
|
177
|
+
/* Input Background Colors ----------------------*/
|
|
178
|
+
/* Input Border Colors ----------------------*/
|
|
179
|
+
/* Status Text and Icon colors ----------------------*/
|
|
180
|
+
/* Status Background colors ----------------------*/
|
|
181
|
+
/* Status Icon Background colors ----------------------*/
|
|
182
|
+
/* Status Border colors ----------------------*/
|
|
183
|
+
/*=====================================
|
|
184
|
+
Base colors should not be documented.
|
|
185
|
+
Only document color use.
|
|
186
|
+
|
|
187
|
+
Colors -----------------------------*/
|
|
188
|
+
/* Specialty Gradient -----------------*/
|
|
189
|
+
/* Interface colors -------------------*/
|
|
190
|
+
/* Main colors ------------------------*/
|
|
191
|
+
/*=====================================
|
|
192
|
+
|
|
193
|
+
Background colors ------------------*/
|
|
194
|
+
/* Card colors ------------------*/
|
|
195
|
+
/* Active colors ----------------------*/
|
|
196
|
+
/* Hover colors -----------------------*/
|
|
197
|
+
/* Focus colors -----------------------*/
|
|
198
|
+
/* Border colors ----------------------*/
|
|
199
|
+
/* Shadow colors ----------------------*/
|
|
200
|
+
/* Text colors ------------------------*/
|
|
201
|
+
/* Data colors ------------------------*/
|
|
202
|
+
/* Status colors ----------------------*/
|
|
203
|
+
/* Link colors ------------------------*/
|
|
204
|
+
/* Product colors ---------------------*/
|
|
205
|
+
/* Category colors ---------------------*/
|
|
206
|
+
/* CLEAN UP AND REMOVE */
|
|
207
|
+
/* Headings */
|
|
208
|
+
/* Standard Font Weights */
|
|
209
|
+
/* Non_Standard Font Weights */
|
|
210
|
+
/* Link Colors */
|
|
211
|
+
/* line 5, ../../app/assets/stylesheets/compass/navigation/_label.scss */
|
|
212
|
+
.nitro-navigation .navigation-topbar-label {
|
|
213
|
+
position: absolute;
|
|
214
|
+
left: 60px;
|
|
215
|
+
font-size: 0.75em;
|
|
216
|
+
font-weight: bold;
|
|
217
|
+
color: #FFF;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
@media screen and (max-width: 574px) {
|
|
221
|
+
/* line 5, ../../app/assets/stylesheets/compass/navigation/_label.scss */
|
|
222
|
+
.nitro-navigation .navigation-topbar-label {
|
|
223
|
+
left: 40px;
|
|
224
|
+
bottom: 2px;
|
|
225
|
+
font-size: 11px;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
/* line 18, ../../app/assets/stylesheets/compass/navigation/_label.scss */
|
|
230
|
+
.nitro-navigation .navigation-topbar-label > * {
|
|
231
|
+
padding: .15em .8em;
|
|
232
|
+
-webkit-font-smoothing: antialiased;
|
|
233
|
+
-moz-osx-font-smoothing: grayscale;
|
|
234
|
+
line-height: 1;
|
|
235
|
+
white-space: nowrap;
|
|
236
|
+
border-radius: .25em;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
/* line 26, ../../app/assets/stylesheets/compass/navigation/_label.scss */
|
|
240
|
+
.nitro-navigation .navigation-topbar-label > *:last-child {
|
|
241
|
+
margin-left: 5px;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
/* line 1, ../../app/assets/stylesheets/compass/navigation/_main-page-content.scss */
|
|
245
|
+
.page-container {
|
|
246
|
+
display: flex;
|
|
247
|
+
flex-direction: column;
|
|
248
|
+
justify-content: flex-start;
|
|
249
|
+
align-items: stretch;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/* line 6, ../../app/assets/stylesheets/compass/navigation/_main-page-content.scss */
|
|
253
|
+
.page-container.page-container-mobile {
|
|
254
|
+
height: 100%;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
/* line 9, ../../app/assets/stylesheets/compass/navigation/_main-page-content.scss */
|
|
258
|
+
.page-container #main-view {
|
|
259
|
+
display: flex;
|
|
260
|
+
flex-direction: row;
|
|
261
|
+
justify-content: flex-start;
|
|
262
|
+
align-items: stretch;
|
|
263
|
+
flex-grow: 1;
|
|
264
|
+
padding: 0;
|
|
265
|
+
margin: 0;
|
|
266
|
+
position: relative;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
/* line 18, ../../app/assets/stylesheets/compass/navigation/_main-page-content.scss */
|
|
270
|
+
.page-container #main-view .main-page-content {
|
|
271
|
+
flex-grow: 1;
|
|
272
|
+
min-height: 100%;
|
|
273
|
+
overflow-y: visible;
|
|
274
|
+
padding: 30px;
|
|
275
|
+
position: relative;
|
|
276
|
+
overflow-x: auto;
|
|
277
|
+
position: static;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
/* line 27, ../../app/assets/stylesheets/compass/navigation/_main-page-content.scss */
|
|
281
|
+
.page-container #main-view .main-page-content .container {
|
|
282
|
+
width: 100%;
|
|
283
|
+
max-width: 1187px;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
/* line 34, ../../app/assets/stylesheets/compass/navigation/_main-page-content.scss */
|
|
287
|
+
.page-container #main-view .main-page-content.full {
|
|
288
|
+
padding: 0;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
/* line 38, ../../app/assets/stylesheets/compass/navigation/_main-page-content.scss */
|
|
292
|
+
.page-container #main-view .main-page-content::after {
|
|
293
|
+
content: "";
|
|
294
|
+
width: 100%;
|
|
295
|
+
display: block;
|
|
296
|
+
float: none;
|
|
297
|
+
clear: both;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
/* line 48, ../../app/assets/stylesheets/compass/navigation/_main-page-content.scss */
|
|
301
|
+
.page-container #main-view.full-width .main-page-content {
|
|
302
|
+
padding: 0;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
/* line 54, ../../app/assets/stylesheets/compass/navigation/_main-page-content.scss */
|
|
306
|
+
.page-container::after {
|
|
307
|
+
content: "";
|
|
308
|
+
width: 100%;
|
|
309
|
+
display: block;
|
|
310
|
+
float: none;
|
|
311
|
+
clear: both;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
/* Accessible color tokens (WCAG-compliant) — defined in _colors_accessible.scss */
|
|
315
|
+
/*=====================================
|
|
316
|
+
Accessible Color Tokens (WCAG-compliant)
|
|
317
|
+
Source of truth for new color tokens, starting with accessible text, border, input, and status colors.
|
|
318
|
+
Do not document base values; document usage only.
|
|
319
|
+
=====================================*/
|
|
320
|
+
/* Text Colors ----------------------*/
|
|
321
|
+
/* Input Text & Icon Colors ----------------------*/
|
|
322
|
+
/* Input Background Colors ----------------------*/
|
|
323
|
+
/* Input Border Colors ----------------------*/
|
|
324
|
+
/* Status Text and Icon colors ----------------------*/
|
|
325
|
+
/* Status Background colors ----------------------*/
|
|
326
|
+
/* Status Icon Background colors ----------------------*/
|
|
327
|
+
/* Status Border colors ----------------------*/
|
|
328
|
+
/*=====================================
|
|
329
|
+
Base colors should not be documented.
|
|
330
|
+
Only document color use.
|
|
331
|
+
|
|
332
|
+
Colors -----------------------------*/
|
|
333
|
+
/* Specialty Gradient -----------------*/
|
|
334
|
+
/* Interface colors -------------------*/
|
|
335
|
+
/* Main colors ------------------------*/
|
|
336
|
+
/*=====================================
|
|
337
|
+
|
|
338
|
+
Background colors ------------------*/
|
|
339
|
+
/* Card colors ------------------*/
|
|
340
|
+
/* Active colors ----------------------*/
|
|
341
|
+
/* Hover colors -----------------------*/
|
|
342
|
+
/* Focus colors -----------------------*/
|
|
343
|
+
/* Border colors ----------------------*/
|
|
344
|
+
/* Shadow colors ----------------------*/
|
|
345
|
+
/* Text colors ------------------------*/
|
|
346
|
+
/* Data colors ------------------------*/
|
|
347
|
+
/* Status colors ----------------------*/
|
|
348
|
+
/* Link colors ------------------------*/
|
|
349
|
+
/* Product colors ---------------------*/
|
|
350
|
+
/* Category colors ---------------------*/
|
|
351
|
+
/* Accessible color tokens (WCAG-compliant) — defined in _colors_accessible.scss */
|
|
352
|
+
/*=====================================
|
|
353
|
+
Accessible Color Tokens (WCAG-compliant)
|
|
354
|
+
Source of truth for new color tokens, starting with accessible text, border, input, and status colors.
|
|
355
|
+
Do not document base values; document usage only.
|
|
356
|
+
=====================================*/
|
|
357
|
+
/* Text Colors ----------------------*/
|
|
358
|
+
/* Input Text & Icon Colors ----------------------*/
|
|
359
|
+
/* Input Background Colors ----------------------*/
|
|
360
|
+
/* Input Border Colors ----------------------*/
|
|
361
|
+
/* Status Text and Icon colors ----------------------*/
|
|
362
|
+
/* Status Background colors ----------------------*/
|
|
363
|
+
/* Status Icon Background colors ----------------------*/
|
|
364
|
+
/* Status Border colors ----------------------*/
|
|
365
|
+
/*=====================================
|
|
366
|
+
Base colors should not be documented.
|
|
367
|
+
Only document color use.
|
|
368
|
+
|
|
369
|
+
Colors -----------------------------*/
|
|
370
|
+
/* Specialty Gradient -----------------*/
|
|
371
|
+
/* Interface colors -------------------*/
|
|
372
|
+
/* Main colors ------------------------*/
|
|
373
|
+
/*=====================================
|
|
374
|
+
|
|
375
|
+
Background colors ------------------*/
|
|
376
|
+
/* Card colors ------------------*/
|
|
377
|
+
/* Active colors ----------------------*/
|
|
378
|
+
/* Hover colors -----------------------*/
|
|
379
|
+
/* Focus colors -----------------------*/
|
|
380
|
+
/* Border colors ----------------------*/
|
|
381
|
+
/* Shadow colors ----------------------*/
|
|
382
|
+
/* Text colors ------------------------*/
|
|
383
|
+
/* Data colors ------------------------*/
|
|
384
|
+
/* Status colors ----------------------*/
|
|
385
|
+
/* Link colors ------------------------*/
|
|
386
|
+
/* Product colors ---------------------*/
|
|
387
|
+
/* Category colors ---------------------*/
|
|
388
|
+
/* CLEAN UP AND REMOVE */
|
|
389
|
+
/* Headings */
|
|
390
|
+
/* Standard Font Weights */
|
|
391
|
+
/* Non_Standard Font Weights */
|
|
392
|
+
/* Link Colors */
|
|
393
|
+
/* line 8, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
394
|
+
.main-page-sidebar {
|
|
395
|
+
transition: width 0.2s ease;
|
|
396
|
+
flex-grow: 0;
|
|
397
|
+
flex-shrink: 0;
|
|
398
|
+
height: calc(100vh - 92px);
|
|
399
|
+
background: white;
|
|
400
|
+
border-right: 1px solid #E4E8F0;
|
|
401
|
+
position: sticky;
|
|
402
|
+
position: -webkit-sticky;
|
|
403
|
+
top: 92px;
|
|
404
|
+
left: 0;
|
|
405
|
+
z-index: 1000;
|
|
406
|
+
transition: all 0.2s ease-out;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
/* line 22, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
410
|
+
.main-page-sidebar .nitro_sidebar {
|
|
411
|
+
height: 100%;
|
|
412
|
+
width: 100%;
|
|
413
|
+
overflow-x: hidden;
|
|
414
|
+
overflow-y: auto;
|
|
415
|
+
scrollbar-width: none;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
/* line 29, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
419
|
+
.main-page-sidebar .nitro_sidebar > div:first-child {
|
|
420
|
+
height: 100%;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
/* line 34, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
424
|
+
.main-page-sidebar .nitro_sidebar [class^="pb_nav_list"][class*="_vertical"][class*="_normal"]
|
|
425
|
+
[class*="pb_nav_list_kit_item"][class*="pb_nav_list_item"][class*="_active"][class*="_highlighted_border_none"] {
|
|
426
|
+
box-shadow: inset 3px 0 0 #0056cf !important;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
/* line 40, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
430
|
+
.main-page-sidebar .nitro_sidebar .pb_collapsible_content_kit .pb_nav_list_item_link {
|
|
431
|
+
padding-left: 47px !important;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
/* line 45, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
435
|
+
.main-page-sidebar .nitro_sidebar .collapsed_nav_icon_container {
|
|
436
|
+
font-size: 17.5px;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
/* line 49, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
440
|
+
.main-page-sidebar .nitro_sidebar .pb_nav_list_item_text_collapsible {
|
|
441
|
+
overflow: hidden;
|
|
442
|
+
display: -webkit-box;
|
|
443
|
+
line-clamp: 1;
|
|
444
|
+
-webkit-box-orient: vertical;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
/* line 57, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
448
|
+
.main-page-sidebar .nitro_sidebar .collapsible_nav_wrapper_active .pb_collapsible_content_kit {
|
|
449
|
+
box-shadow: inset 3px 0 0 #0056CF !important;
|
|
450
|
+
background-color: #f7fbff;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
/* line 62, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
454
|
+
.main-page-sidebar .nitro_sidebar .pb_collapsible_content_kit {
|
|
455
|
+
margin-left: unset !important;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
/* line 65, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
459
|
+
.main-page-sidebar .nitro_sidebar .pb_nav_list_item_icon_left,
|
|
460
|
+
.main-page-sidebar .nitro_sidebar .pb_nav_list_item_icon_left_collapsible {
|
|
461
|
+
color: #687887 !important;
|
|
462
|
+
font-size: 17.5px !important;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
/* line 70, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
466
|
+
.main-page-sidebar .nitro_sidebar [class^="pb_nav_list"][class*="_vertical"][class*="_normal"]
|
|
467
|
+
[class*="pb_nav_list_kit_item"][class*="pb_nav_list_item"][class*="_link"]:hover
|
|
468
|
+
[class*="_icon"] {
|
|
469
|
+
color: #0056CF !important;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
@media only screen and (max-width: 574px) {
|
|
473
|
+
/* line 81, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
474
|
+
.page-container #main-view .main-page-sidebar {
|
|
475
|
+
position: fixed;
|
|
476
|
+
top: 0;
|
|
477
|
+
left: -420px;
|
|
478
|
+
max-width: 420px;
|
|
479
|
+
height: 100vh;
|
|
480
|
+
z-index: 5000;
|
|
481
|
+
padding-top: 92px;
|
|
482
|
+
}
|
|
483
|
+
/* line 90, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
484
|
+
.page-container #main-view .main-page-sidebar-mobile {
|
|
485
|
+
min-height: 60px;
|
|
486
|
+
display: flex;
|
|
487
|
+
color: white;
|
|
488
|
+
}
|
|
489
|
+
/* line 96, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
490
|
+
.page-container #main-view .main-page-sidebar.mobile-open {
|
|
491
|
+
left: 0;
|
|
492
|
+
width: 100%;
|
|
493
|
+
}
|
|
494
|
+
/* line 101, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
495
|
+
.page-container #main-view .main-page-content {
|
|
496
|
+
position: relative;
|
|
497
|
+
}
|
|
498
|
+
/* line 105, ../../app/assets/stylesheets/compass/navigation/_sidebar.scss */
|
|
499
|
+
.page-container #main-view .main-page-content.mobile-open::after {
|
|
500
|
+
content: "";
|
|
501
|
+
position: fixed;
|
|
502
|
+
top: 0;
|
|
503
|
+
left: 0;
|
|
504
|
+
width: 100vw;
|
|
505
|
+
height: 100vh;
|
|
506
|
+
background: rgba(36, 43, 66, 0.3);
|
|
507
|
+
z-index: 4990;
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
/* line 8, ../../app/assets/stylesheets/compass/navigation/_spinner.scss */
|
|
512
|
+
.page-container #spinner {
|
|
513
|
+
position: absolute;
|
|
514
|
+
top: calc(92px + 16px);
|
|
515
|
+
right: 16px;
|
|
516
|
+
left: auto;
|
|
517
|
+
bottom: auto;
|
|
518
|
+
z-index: 10012;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
/* line 16, ../../app/assets/stylesheets/compass/navigation/_spinner.scss */
|
|
522
|
+
.page-container #spinner .badge {
|
|
523
|
+
display: inline-block;
|
|
524
|
+
background: rgba(249, 250, 251, 0.7);
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
/* line 21, ../../app/assets/stylesheets/compass/navigation/_spinner.scss */
|
|
528
|
+
.page-container #spinner .badge svg path {
|
|
529
|
+
fill: #004976;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
/* Accessible color tokens (WCAG-compliant) — defined in _colors_accessible.scss */
|
|
533
|
+
/*=====================================
|
|
534
|
+
Accessible Color Tokens (WCAG-compliant)
|
|
535
|
+
Source of truth for new color tokens, starting with accessible text, border, input, and status colors.
|
|
536
|
+
Do not document base values; document usage only.
|
|
537
|
+
=====================================*/
|
|
538
|
+
/* Text Colors ----------------------*/
|
|
539
|
+
/* Input Text & Icon Colors ----------------------*/
|
|
540
|
+
/* Input Background Colors ----------------------*/
|
|
541
|
+
/* Input Border Colors ----------------------*/
|
|
542
|
+
/* Status Text and Icon colors ----------------------*/
|
|
543
|
+
/* Status Background colors ----------------------*/
|
|
544
|
+
/* Status Icon Background colors ----------------------*/
|
|
545
|
+
/* Status Border colors ----------------------*/
|
|
546
|
+
/*=====================================
|
|
547
|
+
Base colors should not be documented.
|
|
548
|
+
Only document color use.
|
|
549
|
+
|
|
550
|
+
Colors -----------------------------*/
|
|
551
|
+
/* Specialty Gradient -----------------*/
|
|
552
|
+
/* Interface colors -------------------*/
|
|
553
|
+
/* Main colors ------------------------*/
|
|
554
|
+
/*=====================================
|
|
555
|
+
|
|
556
|
+
Background colors ------------------*/
|
|
557
|
+
/* Card colors ------------------*/
|
|
558
|
+
/* Active colors ----------------------*/
|
|
559
|
+
/* Hover colors -----------------------*/
|
|
560
|
+
/* Focus colors -----------------------*/
|
|
561
|
+
/* Border colors ----------------------*/
|
|
562
|
+
/* Shadow colors ----------------------*/
|
|
563
|
+
/* Text colors ------------------------*/
|
|
564
|
+
/* Data colors ------------------------*/
|
|
565
|
+
/* Status colors ----------------------*/
|
|
566
|
+
/* Link colors ------------------------*/
|
|
567
|
+
/* Product colors ---------------------*/
|
|
568
|
+
/* Category colors ---------------------*/
|
|
569
|
+
/* Accessible color tokens (WCAG-compliant) — defined in _colors_accessible.scss */
|
|
570
|
+
/*=====================================
|
|
571
|
+
Accessible Color Tokens (WCAG-compliant)
|
|
572
|
+
Source of truth for new color tokens, starting with accessible text, border, input, and status colors.
|
|
573
|
+
Do not document base values; document usage only.
|
|
574
|
+
=====================================*/
|
|
575
|
+
/* Text Colors ----------------------*/
|
|
576
|
+
/* Input Text & Icon Colors ----------------------*/
|
|
577
|
+
/* Input Background Colors ----------------------*/
|
|
578
|
+
/* Input Border Colors ----------------------*/
|
|
579
|
+
/* Status Text and Icon colors ----------------------*/
|
|
580
|
+
/* Status Background colors ----------------------*/
|
|
581
|
+
/* Status Icon Background colors ----------------------*/
|
|
582
|
+
/* Status Border colors ----------------------*/
|
|
583
|
+
/*=====================================
|
|
584
|
+
Base colors should not be documented.
|
|
585
|
+
Only document color use.
|
|
586
|
+
|
|
587
|
+
Colors -----------------------------*/
|
|
588
|
+
/* Specialty Gradient -----------------*/
|
|
589
|
+
/* Interface colors -------------------*/
|
|
590
|
+
/* Main colors ------------------------*/
|
|
591
|
+
/*=====================================
|
|
592
|
+
|
|
593
|
+
Background colors ------------------*/
|
|
594
|
+
/* Card colors ------------------*/
|
|
595
|
+
/* Active colors ----------------------*/
|
|
596
|
+
/* Hover colors -----------------------*/
|
|
597
|
+
/* Focus colors -----------------------*/
|
|
598
|
+
/* Border colors ----------------------*/
|
|
599
|
+
/* Shadow colors ----------------------*/
|
|
600
|
+
/* Text colors ------------------------*/
|
|
601
|
+
/* Data colors ------------------------*/
|
|
602
|
+
/* Status colors ----------------------*/
|
|
603
|
+
/* Link colors ------------------------*/
|
|
604
|
+
/* Product colors ---------------------*/
|
|
605
|
+
/* Category colors ---------------------*/
|
|
606
|
+
/* line 8, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
607
|
+
.nitro-navigation {
|
|
608
|
+
position: sticky;
|
|
609
|
+
position: -webkit-sticky;
|
|
610
|
+
top: 0;
|
|
611
|
+
right: 0;
|
|
612
|
+
width: 100%;
|
|
613
|
+
z-index: 10010;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
/* line 16, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
617
|
+
.nitro-navigation .compass-logo {
|
|
618
|
+
display: block;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
@media screen and (max-width: 574px) {
|
|
622
|
+
/* line 16, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
623
|
+
.nitro-navigation .compass-logo {
|
|
624
|
+
display: none;
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
/* line 24, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
629
|
+
.nitro-navigation .compass-logo-mobile {
|
|
630
|
+
display: none;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
@media screen and (max-width: 574px) {
|
|
634
|
+
/* line 24, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
635
|
+
.nitro-navigation .compass-logo-mobile {
|
|
636
|
+
display: block;
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
/* line 32, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
641
|
+
.nitro-navigation .navigation-topbar {
|
|
642
|
+
margin: 0;
|
|
643
|
+
border-bottom: 0;
|
|
644
|
+
position: relative;
|
|
645
|
+
height: 60px;
|
|
646
|
+
box-sizing: border-box;
|
|
647
|
+
display: flex;
|
|
648
|
+
align-items: center;
|
|
649
|
+
justify-content: space-between;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
/* line 42, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
653
|
+
.nitro-navigation .navigation-topbar-left, .nitro-navigation .navigation-topbar-center, .nitro-navigation .navigation-topbar-right {
|
|
654
|
+
position: static;
|
|
655
|
+
padding: 0 32px;
|
|
656
|
+
color: #FFFFFF;
|
|
657
|
+
margin: 2px;
|
|
658
|
+
flex-basis: 33%;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
@media screen and (max-width: 767px) {
|
|
662
|
+
/* line 42, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
663
|
+
.nitro-navigation .navigation-topbar-left, .nitro-navigation .navigation-topbar-center, .nitro-navigation .navigation-topbar-right {
|
|
664
|
+
padding: 0 8px;
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
@media screen and (max-width: 767px) {
|
|
669
|
+
/* line 55, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
670
|
+
.nitro-navigation .navigation-topbar-center {
|
|
671
|
+
flex: 1;
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
/* line 60, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
676
|
+
.nitro-navigation .navigation-topbar-right {
|
|
677
|
+
color: #FFFFFF;
|
|
678
|
+
margin: 2px;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
@media screen and (max-width: 767px) {
|
|
682
|
+
/* line 60, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
683
|
+
.nitro-navigation .navigation-topbar-right {
|
|
684
|
+
flex: 0;
|
|
685
|
+
padding-right: 0px;
|
|
686
|
+
}
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
/* line 69, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
690
|
+
.nitro-navigation .navigation-topbar-right .impersonating {
|
|
691
|
+
border: 2px solid #ff7034;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
/* line 74, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
695
|
+
.nitro-navigation .navigation-topbar-right .dropdown_wrapper .pb_dropdown_container {
|
|
696
|
+
min-width: 280px;
|
|
697
|
+
max-height: calc(100vh - 90px);
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
/* line 78, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
701
|
+
.nitro-navigation .navigation-topbar-right .dropdown_wrapper .pb_dropdown_container > [class*="pb_dropdown_option"][class*="selected"] [class^="pb_body"] {
|
|
702
|
+
color: #687887 !important;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
/* line 83, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
706
|
+
.nitro-navigation .navigation-topbar-right .dropdown_wrapper div[data-dropdown-custom-trigger] {
|
|
707
|
+
display: block !important;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
/* line 88, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
711
|
+
.nitro-navigation .navigation-topbar-right .dropdown_wrapper:has(svg.svg_3x) .pb_dropdown_trigger {
|
|
712
|
+
width: 65px !important;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
/* line 92, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
716
|
+
.nitro-navigation .navigation-topbar-right .dropdown_wrapper:has(svg.svg_3x) .icon-caret svg.svg_xs {
|
|
717
|
+
position: relative !important;
|
|
718
|
+
right: 10px !important;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
/* line 99, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
722
|
+
.nitro-navigation .navigation-topbar-right .dropdown_wrapper:has(svg.svg_2x) .pb_dropdown_trigger {
|
|
723
|
+
width: 45px !important;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
/* line 103, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
727
|
+
.nitro-navigation .navigation-topbar-right .dropdown_wrapper:has(svg.svg_2x) .icon-caret svg.svg_xs {
|
|
728
|
+
position: relative !important;
|
|
729
|
+
right: 5px !important;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
/* line 109, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
733
|
+
.nitro-navigation .navigation-topbar-right .dropdown_wrapper .pb_dropdown_trigger img {
|
|
734
|
+
width: 38px;
|
|
735
|
+
border-radius: 1000px;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
/* line 116, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
739
|
+
.nitro-navigation .navigation-topbar-right .menu-section-options li {
|
|
740
|
+
padding: 0px;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
/* line 118, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
744
|
+
.nitro-navigation .navigation-topbar-right .menu-section-options li svg {
|
|
745
|
+
margin-right: 8px;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
/* line 122, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
749
|
+
.nitro-navigation .navigation-topbar-right .menu-section-options a {
|
|
750
|
+
color: #687887;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
/* line 125, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
754
|
+
.nitro-navigation .navigation-topbar-right .menu-section-options:hover {
|
|
755
|
+
background-color: #F3F7FB;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
/* line 129, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
759
|
+
.nitro-navigation .navigation-topbar-right .pb_dropdown_option_selected_focused,
|
|
760
|
+
.nitro-navigation .navigation-topbar-right .pb_dropdown_option_selected {
|
|
761
|
+
background-color: unset !important;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
/* line 134, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
765
|
+
.nitro-navigation .navigation-topbar-right [class^="pb_dropdown"] [class*="pb_list_kit"] li {
|
|
766
|
+
padding: 0px !important;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
@media screen and (max-width: 767px) {
|
|
770
|
+
/* line 139, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
771
|
+
.nitro-navigation .navigation-topbar-left {
|
|
772
|
+
flex: 0;
|
|
773
|
+
padding-left: 0px;
|
|
774
|
+
}
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
/* line 146, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
778
|
+
.nitro-navigation .nitro-header-breadcrumbs-menu .breadcrumbs-separator {
|
|
779
|
+
width: 1px;
|
|
780
|
+
padding-top: 2px;
|
|
781
|
+
padding-bottom: 2px;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
/* line 150, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
785
|
+
.nitro-navigation .nitro-header-breadcrumbs-menu .breadcrumbs-separator::before, .nitro-navigation .nitro-header-breadcrumbs-menu .breadcrumbs-separator::after {
|
|
786
|
+
background: rgba(255, 255, 255, 0.1);
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
/* line 155, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
790
|
+
.nitro-navigation .nitro-header-breadcrumbs-menu .breadcrumb-item {
|
|
791
|
+
white-space: nowrap;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
/* line 158, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
795
|
+
.nitro-navigation .nitro-header-breadcrumbs-menu .breadcrumb-item:hover svg,
|
|
796
|
+
.nitro-navigation .nitro-header-breadcrumbs-menu .breadcrumb-item:hover .pb_detail_kit_color_light.dark {
|
|
797
|
+
color: #FFFFFF !important;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
/* line 164, ../../app/assets/stylesheets/compass/navigation/_header.scss */
|
|
801
|
+
.nitro-navigation .nitro-header-breadcrumbs-menu .breadcrumb-item:first-child {
|
|
802
|
+
min-width: 59px;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
/* line 11, ../../app/assets/stylesheets/compass/layout.scss */
|
|
806
|
+
body {
|
|
807
|
+
margin: 0px;
|
|
808
|
+
min-height: 100%;
|
|
809
|
+
height: auto;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
/* line 17, ../../app/assets/stylesheets/compass/layout.scss */
|
|
813
|
+
html {
|
|
814
|
+
height: 100%;
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
/* line 21, ../../app/assets/stylesheets/compass/layout.scss */
|
|
818
|
+
html, body {
|
|
819
|
+
background: #F3F7FB;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
/* line 27, ../../app/assets/stylesheets/compass/layout.scss */
|
|
823
|
+
.select2-drop {
|
|
824
|
+
z-index: 10014 !important;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
/* line 30, ../../app/assets/stylesheets/compass/layout.scss */
|
|
828
|
+
.popover,
|
|
829
|
+
#colorbox,
|
|
830
|
+
#cboxOverlay,
|
|
831
|
+
#cboxWrapper {
|
|
832
|
+
z-index: 10013 !important;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
/* line 36, ../../app/assets/stylesheets/compass/layout.scss */
|
|
836
|
+
.modal {
|
|
837
|
+
z-index: 10012 !important;
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
/* line 39, ../../app/assets/stylesheets/compass/layout.scss */
|
|
841
|
+
.modal-backdrop {
|
|
842
|
+
z-index: 10011 !important;
|
|
843
|
+
}
|