@transferwise/neptune-css 14.9.1 → 14.9.3
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/dist/css/border-radius.css +0 -8
- package/dist/css/flex.css +253 -417
- package/dist/css/navbar-base.css +339 -168
- package/dist/css/navbar.css +107 -41
- package/dist/css/neptune-addons.css +893 -421
- package/dist/css/neptune-core.css +203 -169
- package/dist/css/neptune.css +15450 -14660
- package/dist/css/ring.css +0 -4
- package/dist/css/utilities.css +72 -1202
- package/package.json +1 -1
- package/src/less/addons/_display-utilities.less +159 -0
- package/src/less/addons/_spacing-utilities.less +26 -3
- package/src/less/addons/_utilities.less +147 -0
- package/src/less/border-radius.less +3 -1
- package/src/less/core/_scaffolding.less +29 -9
- package/src/less/core/_typography-utilities.less +237 -17
- package/src/less/flex.less +18 -9
- package/src/less/{addons → mixins}/_center-block.less +4 -2
- package/src/less/mixins/_flex.less +105 -0
- package/src/less/navbar.less +2 -10
- package/src/less/neptune-addons.less +1 -4
- package/src/less/utilities.less +141 -29
- package/src/less/utilities/align-items.less +0 -107
- package/src/less/utilities/align-self.less +0 -107
- package/src/less/utilities/border-radius.less +0 -11
- package/src/less/utilities/color.less +0 -70
- package/src/less/utilities/cursor.less +0 -3
- package/src/less/utilities/display.less +0 -178
- package/src/less/utilities/flex-direction.less +0 -47
- package/src/less/utilities/flex-grow.less +0 -27
- package/src/less/utilities/flex-wrap.less +0 -47
- package/src/less/utilities/float.less +0 -77
- package/src/less/utilities/font-weight.less +0 -11
- package/src/less/utilities/gap.less +0 -3
- package/src/less/utilities/justify-content.less +0 -107
- package/src/less/utilities/margin.less +0 -192
- package/src/less/utilities/max-width.less +0 -3
- package/src/less/utilities/order.less +0 -87
- package/src/less/utilities/outline-style.less +0 -8
- package/src/less/utilities/overflow-wrap.less +0 -3
- package/src/less/utilities/padding.less +0 -179
- package/src/less/utilities/position.less +0 -3
- package/src/less/utilities/rotate.less +0 -12
- package/src/less/utilities/screen-reader.less +0 -24
- package/src/less/utilities/text-align.less +0 -87
- package/src/less/utilities/text-decoration-line.less +0 -8
- package/src/less/utilities/text-overflow.less +0 -7
- package/src/less/utilities/text-transform.less +0 -11
- package/src/less/utilities/visibility.less +0 -3
- package/src/less/utilities/white-space.less +0 -27
package/dist/css/navbar-base.css
CHANGED
|
@@ -1,18 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
}@media (min-width: 768px) {
|
|
3
|
-
}@media (min-width: 576px) {
|
|
4
|
-
}.navbar::before,
|
|
1
|
+
.navbar::before,
|
|
5
2
|
.navbar::after,
|
|
6
3
|
.navbar-header::before,
|
|
7
4
|
.navbar-header::after,
|
|
8
5
|
.navbar-collapse::before,
|
|
9
6
|
.navbar-collapse::after {
|
|
10
7
|
content: " ";display: table;
|
|
11
|
-
}
|
|
8
|
+
}
|
|
9
|
+
.navbar::after,
|
|
12
10
|
.navbar-header::after,
|
|
13
11
|
.navbar-collapse::after {
|
|
14
12
|
clear: both;
|
|
15
|
-
}
|
|
13
|
+
}
|
|
14
|
+
@media (min-width: 768px) {
|
|
15
|
+
}
|
|
16
|
+
@media (min-width: 768px) {
|
|
17
|
+
}
|
|
18
|
+
@media (min-width: 576px) {
|
|
19
|
+
}
|
|
20
|
+
.navbar {
|
|
16
21
|
position: relative;
|
|
17
22
|
font-size: 0.875rem;
|
|
18
23
|
font-size: var(--font-size-14);
|
|
@@ -20,7 +25,8 @@
|
|
|
20
25
|
margin-bottom: 40px;
|
|
21
26
|
border: 0 solid transparent;
|
|
22
27
|
transition: border-top-width 0s linear;
|
|
23
|
-
}
|
|
28
|
+
}
|
|
29
|
+
@media (min-width: 768px) {
|
|
24
30
|
.navbar {
|
|
25
31
|
border-radius: 0;
|
|
26
32
|
}
|
|
@@ -28,17 +34,20 @@
|
|
|
28
34
|
.navbar .container-fluid {
|
|
29
35
|
border: 0 solid transparent;
|
|
30
36
|
}
|
|
31
|
-
}
|
|
37
|
+
}
|
|
38
|
+
@media (min-width: 768px) {
|
|
32
39
|
.navbar-header {
|
|
33
40
|
float: left;
|
|
34
41
|
}
|
|
35
42
|
[dir="rtl"] .navbar-header {
|
|
36
43
|
float: right;
|
|
37
44
|
}
|
|
38
|
-
}
|
|
45
|
+
}
|
|
46
|
+
.navbar-collapse {
|
|
39
47
|
overflow-x: visible;
|
|
40
48
|
-webkit-overflow-scrolling: touch;
|
|
41
|
-
}
|
|
49
|
+
}
|
|
50
|
+
@media (min-width: 768px) {
|
|
42
51
|
.navbar-collapse {
|
|
43
52
|
width: auto;
|
|
44
53
|
border-top: 0;
|
|
@@ -55,7 +64,8 @@
|
|
|
55
64
|
padding-left: 0;
|
|
56
65
|
padding-right: 0;
|
|
57
66
|
}
|
|
58
|
-
}
|
|
67
|
+
}
|
|
68
|
+
@media (min-width: 768px) {
|
|
59
69
|
.container > .navbar-header,
|
|
60
70
|
.container-fluid > .navbar-header,
|
|
61
71
|
.container > .navbar-collapse,
|
|
@@ -63,10 +73,12 @@
|
|
|
63
73
|
margin-right: 0;
|
|
64
74
|
margin-left: 0;
|
|
65
75
|
}
|
|
66
|
-
}
|
|
76
|
+
}
|
|
77
|
+
.navbar-static-top {
|
|
67
78
|
z-index: 1000;
|
|
68
79
|
margin-bottom: 0;
|
|
69
|
-
}
|
|
80
|
+
}
|
|
81
|
+
@media (min-width: 768px) {
|
|
70
82
|
.navbar-static-top {
|
|
71
83
|
border-radius: 0;
|
|
72
84
|
}
|
|
@@ -75,7 +87,8 @@
|
|
|
75
87
|
border-width: 0;
|
|
76
88
|
margin-bottom: -1px;
|
|
77
89
|
}
|
|
78
|
-
}
|
|
90
|
+
}
|
|
91
|
+
.navbar.affix,
|
|
79
92
|
.navbar-fixed-top,
|
|
80
93
|
.navbar-fixed-bottom {
|
|
81
94
|
position: fixed;
|
|
@@ -84,7 +97,8 @@
|
|
|
84
97
|
z-index: 1030;
|
|
85
98
|
backface-visibility: hidden;
|
|
86
99
|
background-color: #37517e;
|
|
87
|
-
}
|
|
100
|
+
}
|
|
101
|
+
.navbar.affix .navbar-nav > li > a,
|
|
88
102
|
.navbar-fixed-top .navbar-nav > li > a,
|
|
89
103
|
.navbar-fixed-bottom .navbar-nav > li > a,
|
|
90
104
|
.navbar.affix .navbar-nav > li .navbar-title,
|
|
@@ -95,7 +109,8 @@
|
|
|
95
109
|
.navbar-fixed-bottom .navbar-nav > li .navbar-text {
|
|
96
110
|
color: #ffffff;
|
|
97
111
|
color: var(--color-background-screen);
|
|
98
|
-
}
|
|
112
|
+
}
|
|
113
|
+
@media (max-width: 767px) {
|
|
99
114
|
.navbar.affix .navbar-nav > li > a,
|
|
100
115
|
.navbar-fixed-top .navbar-nav > li > a,
|
|
101
116
|
.navbar-fixed-bottom .navbar-nav > li > a,
|
|
@@ -108,33 +123,41 @@
|
|
|
108
123
|
color: #37517e;
|
|
109
124
|
color: var(--color-content-primary);
|
|
110
125
|
}
|
|
111
|
-
}
|
|
126
|
+
}
|
|
127
|
+
.navbar.affix .navbar-nav > li.active > a,
|
|
112
128
|
.navbar-fixed-top .navbar-nav > li.active > a,
|
|
113
129
|
.navbar-fixed-bottom .navbar-nav > li.active > a {
|
|
114
130
|
color: #0077a5;
|
|
115
131
|
color: var(--color-content-accent-active);
|
|
116
|
-
}
|
|
132
|
+
}
|
|
133
|
+
@media (min-width: 768px) {
|
|
117
134
|
.navbar.affix,
|
|
118
135
|
.navbar-fixed-top,
|
|
119
136
|
.navbar-fixed-bottom {
|
|
120
137
|
border-radius: 0;
|
|
121
138
|
}
|
|
122
|
-
}
|
|
139
|
+
}
|
|
140
|
+
.navbar.affix {
|
|
123
141
|
top: -56px;
|
|
124
142
|
border-top-width: 56px;
|
|
125
143
|
transition: border-top-width 0.2s ease-out, background-color 0.2s ease-out;
|
|
126
|
-
}
|
|
144
|
+
}
|
|
145
|
+
.navbar-fixed-top {
|
|
127
146
|
top: 0;
|
|
128
|
-
}
|
|
147
|
+
}
|
|
148
|
+
.navbar-fixed-top .container,
|
|
129
149
|
.navbar-fixed-top .container-fluid {
|
|
130
150
|
margin-bottom: -1px;
|
|
131
|
-
}
|
|
151
|
+
}
|
|
152
|
+
.navbar-fixed-bottom {
|
|
132
153
|
bottom: 0;
|
|
133
154
|
margin-bottom: 0;
|
|
134
|
-
}
|
|
155
|
+
}
|
|
156
|
+
.navbar-fixed-bottom .container,
|
|
135
157
|
.navbar-fixed-bottom .container-fluid {
|
|
136
158
|
margin-top: -1px;
|
|
137
|
-
}
|
|
159
|
+
}
|
|
160
|
+
.navbar-brand {
|
|
138
161
|
float: left;
|
|
139
162
|
padding: 8px 16px 5px;
|
|
140
163
|
font-size: 16px;
|
|
@@ -144,19 +167,24 @@
|
|
|
144
167
|
margin-right: 10px;
|
|
145
168
|
height: 24px;
|
|
146
169
|
width: 118px;
|
|
147
|
-
}
|
|
170
|
+
}
|
|
171
|
+
[dir="rtl"] .navbar-brand {
|
|
148
172
|
float: right;
|
|
149
|
-
}
|
|
173
|
+
}
|
|
174
|
+
[dir="rtl"] .navbar-brand {
|
|
150
175
|
margin-left: 10px;
|
|
151
176
|
margin-right: 0;
|
|
152
177
|
margin-right: initial;
|
|
153
|
-
}
|
|
178
|
+
}
|
|
179
|
+
.navbar-brand:hover,
|
|
154
180
|
.navbar-brand:focus {
|
|
155
181
|
-webkit-text-decoration: none;
|
|
156
182
|
text-decoration: none;
|
|
157
|
-
}
|
|
183
|
+
}
|
|
184
|
+
.navbar-brand > img {
|
|
158
185
|
display: block;
|
|
159
|
-
}
|
|
186
|
+
}
|
|
187
|
+
.navbar-toggle {
|
|
160
188
|
position: relative;
|
|
161
189
|
float: left;
|
|
162
190
|
padding: 9px 0;
|
|
@@ -174,44 +202,55 @@
|
|
|
174
202
|
line-height: var(--line-height-body);
|
|
175
203
|
margin-bottom: 8px;
|
|
176
204
|
color: #ffffff;
|
|
177
|
-
}
|
|
205
|
+
}
|
|
206
|
+
[dir="rtl"] .navbar-toggle {
|
|
178
207
|
float: right;
|
|
179
|
-
}
|
|
208
|
+
}
|
|
209
|
+
[dir="rtl"] .navbar-toggle {
|
|
180
210
|
margin-left: 12px;
|
|
181
211
|
margin-right: 0;
|
|
182
212
|
margin-right: initial;
|
|
183
|
-
}
|
|
213
|
+
}
|
|
214
|
+
.navbar-toggle:focus {
|
|
184
215
|
outline: 0;
|
|
185
|
-
}
|
|
216
|
+
}
|
|
217
|
+
.navbar-toggle .icon-bar:first-child {
|
|
186
218
|
margin-top: 1px;
|
|
187
|
-
}
|
|
219
|
+
}
|
|
220
|
+
.navbar-toggle .icon-bar {
|
|
188
221
|
display: block;
|
|
189
222
|
width: 22px;
|
|
190
223
|
height: 2px;
|
|
191
224
|
border-radius: 1px;
|
|
192
225
|
background-color: #0097c7;
|
|
193
226
|
background-color: var(--color-content-accent);
|
|
194
|
-
}
|
|
227
|
+
}
|
|
228
|
+
.navbar-toggle .icon-bar + .icon-bar {
|
|
195
229
|
margin-top: 4px;
|
|
196
|
-
}
|
|
230
|
+
}
|
|
231
|
+
.navbar-toggle:hover,
|
|
197
232
|
.navbar-toggle:focus {
|
|
198
233
|
color: #0084b3;
|
|
199
234
|
color: var(--color-content-accent-hover);
|
|
200
|
-
}
|
|
235
|
+
}
|
|
236
|
+
.navbar-toggle:hover .icon-bar,
|
|
201
237
|
.navbar-toggle:focus .icon-bar {
|
|
202
238
|
background-color: #0084b3;
|
|
203
239
|
background-color: var(--color-content-accent-hover);
|
|
204
|
-
}
|
|
240
|
+
}
|
|
241
|
+
@media (min-width: 768px) {
|
|
205
242
|
.navbar-toggle {
|
|
206
243
|
display: none;
|
|
207
244
|
}
|
|
208
|
-
}
|
|
245
|
+
}
|
|
246
|
+
.navbar-nav > li > a,
|
|
209
247
|
.navbar-nav > li > button {
|
|
210
248
|
padding: 9px 16px 7px;
|
|
211
249
|
line-height: 40px;
|
|
212
250
|
outline-offset: -1px;
|
|
213
251
|
transition: color ease 0.15s;
|
|
214
|
-
}
|
|
252
|
+
}
|
|
253
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
215
254
|
.navbar-nav > li > a,
|
|
216
255
|
.navbar-nav > li > button {
|
|
217
256
|
padding-left: 12px;
|
|
@@ -229,7 +268,8 @@
|
|
|
229
268
|
padding-right: 0;
|
|
230
269
|
padding-right: initial;
|
|
231
270
|
}
|
|
232
|
-
}
|
|
271
|
+
}
|
|
272
|
+
.navbar-nav > li > a.dropdown-toggle,
|
|
233
273
|
.navbar-nav > li > button.dropdown-toggle {
|
|
234
274
|
height: 56px;
|
|
235
275
|
border: 0;
|
|
@@ -239,10 +279,12 @@
|
|
|
239
279
|
text-align: left;
|
|
240
280
|
color: #0097c7;
|
|
241
281
|
color: var(--color-content-accent);
|
|
242
|
-
}
|
|
282
|
+
}
|
|
283
|
+
[dir="rtl"] .navbar-nav > li > a.dropdown-toggle,
|
|
243
284
|
[dir="rtl"] .navbar-nav > li > button.dropdown-toggle {
|
|
244
285
|
text-align: right;
|
|
245
|
-
}
|
|
286
|
+
}
|
|
287
|
+
.navbar-nav > li > a.dropdown-toggle:active,
|
|
246
288
|
.navbar-nav > li > button.dropdown-toggle:active,
|
|
247
289
|
.navbar-nav > li > a.dropdown-toggle:focus,
|
|
248
290
|
.navbar-nav > li > button.dropdown-toggle:focus {
|
|
@@ -250,7 +292,8 @@
|
|
|
250
292
|
outline: 0;
|
|
251
293
|
color: #0077a5;
|
|
252
294
|
color: var(--color-content-accent-active);
|
|
253
|
-
}
|
|
295
|
+
}
|
|
296
|
+
@media (min-width: 768px) {
|
|
254
297
|
.navbar-inverse .navbar-nav > li > a.dropdown-toggle,
|
|
255
298
|
.navbar-inverse .navbar-nav > li > button.dropdown-toggle {
|
|
256
299
|
color: #ffffff;
|
|
@@ -262,23 +305,28 @@
|
|
|
262
305
|
color: #0084b3;
|
|
263
306
|
color: var(--color-content-accent-hover);
|
|
264
307
|
}
|
|
265
|
-
}
|
|
308
|
+
}
|
|
309
|
+
.navbar-nav > li > a.dropdown-toggle .caret,
|
|
266
310
|
.navbar-nav > li > button.dropdown-toggle .caret {
|
|
267
311
|
margin-left: 4px;
|
|
268
|
-
}
|
|
312
|
+
}
|
|
313
|
+
[dir="rtl"] .navbar-nav > li > a.dropdown-toggle .caret,
|
|
269
314
|
[dir="rtl"] .navbar-nav > li > button.dropdown-toggle .caret {
|
|
270
315
|
margin-right: 4px;
|
|
271
316
|
margin-left: 0;
|
|
272
317
|
margin-left: initial;
|
|
273
|
-
}
|
|
318
|
+
}
|
|
319
|
+
@media (min-width: 768px) {
|
|
274
320
|
.navbar-nav > li > a.navbar-title-link,
|
|
275
321
|
.navbar-nav > li > button.navbar-title-link {
|
|
276
322
|
font-size: 1.25rem;
|
|
277
323
|
font-size: var(--font-size-20);
|
|
278
324
|
}
|
|
279
|
-
}
|
|
325
|
+
}
|
|
326
|
+
.navbar-nav > li.divider {
|
|
280
327
|
display: none;
|
|
281
|
-
}
|
|
328
|
+
}
|
|
329
|
+
@media (max-width: 767px) {
|
|
282
330
|
.navbar-nav > li > a,
|
|
283
331
|
.navbar-nav > li > button {
|
|
284
332
|
font-size: 1rem;
|
|
@@ -327,7 +375,8 @@
|
|
|
327
375
|
color: #0077a5;
|
|
328
376
|
color: var(--color-content-accent-active);
|
|
329
377
|
}
|
|
330
|
-
}
|
|
378
|
+
}
|
|
379
|
+
@media (min-width: 768px) {
|
|
331
380
|
.navbar-nav {
|
|
332
381
|
float: left;
|
|
333
382
|
}
|
|
@@ -345,16 +394,19 @@
|
|
|
345
394
|
font-size: 0.875rem;
|
|
346
395
|
font-size: var(--font-size-14);
|
|
347
396
|
}
|
|
348
|
-
}
|
|
397
|
+
}
|
|
398
|
+
.navbar-form {
|
|
349
399
|
padding: 8px 16px;
|
|
350
|
-
}
|
|
400
|
+
}
|
|
401
|
+
@media (max-width: 767px) {
|
|
351
402
|
.navbar-form .form-group {
|
|
352
403
|
margin-bottom: 4px;
|
|
353
404
|
}
|
|
354
405
|
.navbar-form .form-group:last-child {
|
|
355
406
|
margin-bottom: 0;
|
|
356
407
|
}
|
|
357
|
-
}
|
|
408
|
+
}
|
|
409
|
+
@media (min-width: 768px) {
|
|
358
410
|
.navbar-form {
|
|
359
411
|
width: auto;
|
|
360
412
|
border: 0;
|
|
@@ -366,7 +418,8 @@
|
|
|
366
418
|
margin-top: 12px;
|
|
367
419
|
margin-bottom: 12px;
|
|
368
420
|
}
|
|
369
|
-
}
|
|
421
|
+
}
|
|
422
|
+
@media (min-width: 768px) and (min-width: 576px) {
|
|
370
423
|
.navbar-form .form-group {
|
|
371
424
|
display: inline-block;
|
|
372
425
|
margin-bottom: 0;
|
|
@@ -427,14 +480,17 @@
|
|
|
427
480
|
.navbar-form .has-feedback .form-control-feedback {
|
|
428
481
|
top: 0;
|
|
429
482
|
}
|
|
430
|
-
}
|
|
483
|
+
}
|
|
484
|
+
@media (max-width: 768px) {
|
|
431
485
|
.navbar-form {
|
|
432
486
|
border-bottom: 1px solid rgba(0,0,0,0.10196);
|
|
433
487
|
border-bottom: 1px solid var(--color-border-neutral);
|
|
434
488
|
}
|
|
435
|
-
}
|
|
489
|
+
}
|
|
490
|
+
.navbar-nav > li > .dropdown-menu {
|
|
436
491
|
margin-top: 56px;
|
|
437
|
-
}
|
|
492
|
+
}
|
|
493
|
+
.navbar-nav > li > .dropdown-menu::before {
|
|
438
494
|
content: " ";
|
|
439
495
|
position: absolute;
|
|
440
496
|
display: block;
|
|
@@ -444,14 +500,17 @@
|
|
|
444
500
|
top: -4px;
|
|
445
501
|
transform: rotate(45deg);
|
|
446
502
|
background-color: inherit;
|
|
447
|
-
}
|
|
503
|
+
}
|
|
504
|
+
[dir="rtl"] .navbar-nav > li > .dropdown-menu::before {
|
|
448
505
|
right: 16px;
|
|
449
506
|
left: auto;
|
|
450
507
|
left: initial;
|
|
451
|
-
}
|
|
508
|
+
}
|
|
509
|
+
.navbar-nav > li > .dropdown-menu > li > a {
|
|
452
510
|
font-size: 0.875rem;
|
|
453
511
|
font-size: var(--font-size-14);
|
|
454
|
-
}
|
|
512
|
+
}
|
|
513
|
+
@media (max-width: 768px) {
|
|
455
514
|
.navbar-nav > li > .dropdown-menu > li > a {
|
|
456
515
|
position: relative;
|
|
457
516
|
-webkit-touch-callout: none;
|
|
@@ -471,21 +530,25 @@
|
|
|
471
530
|
right: auto;
|
|
472
531
|
right: initial;
|
|
473
532
|
}
|
|
474
|
-
}
|
|
533
|
+
}
|
|
534
|
+
.navbar-nav > li > .dropdown-menu > .active > a {
|
|
475
535
|
color: #0077a5;
|
|
476
536
|
color: var(--color-content-accent-active);
|
|
477
537
|
background-color: transparent;
|
|
478
538
|
font-weight: 800;
|
|
479
539
|
font-weight: var(--font-weight-bold);
|
|
480
|
-
}
|
|
540
|
+
}
|
|
541
|
+
.navbar-nav > li > .dropdown-menu > .active > a:hover,
|
|
481
542
|
.navbar-nav > li > .dropdown-menu > .active > a:focus {
|
|
482
543
|
background-color: rgba(134,167,189,0.10196);
|
|
483
544
|
background-color: var(--color-background-neutral);
|
|
484
|
-
}
|
|
545
|
+
}
|
|
546
|
+
@media (max-width: 576px) {
|
|
485
547
|
.navbar-nav > li > .dropdown-menu-overlay {
|
|
486
548
|
margin-top: 0;
|
|
487
549
|
}
|
|
488
|
-
}
|
|
550
|
+
}
|
|
551
|
+
.navbar-nav > li.dropdown:active > a,
|
|
489
552
|
.navbar-nav > li.dropdown:focus > a,
|
|
490
553
|
.navbar-nav > li.dropdown:focus-within > a,
|
|
491
554
|
.navbar-nav > li.dropdown.focus-within > a,
|
|
@@ -495,7 +558,8 @@
|
|
|
495
558
|
.navbar-nav > li.dropdown.focus-within > button {
|
|
496
559
|
color: #0077a5;
|
|
497
560
|
color: var(--color-content-accent-active);
|
|
498
|
-
}
|
|
561
|
+
}
|
|
562
|
+
.navbar-nav > li.dropdown:active .dropdown-menu,
|
|
499
563
|
.navbar-nav > li.dropdown:focus .dropdown-menu,
|
|
500
564
|
.navbar-nav > li.dropdown:focus-within .dropdown-menu,
|
|
501
565
|
.navbar-nav > li.dropdown.focus-within .dropdown-menu {
|
|
@@ -503,28 +567,33 @@
|
|
|
503
567
|
visibility: visible;
|
|
504
568
|
opacity: 1;
|
|
505
569
|
transform: none;
|
|
506
|
-
}
|
|
570
|
+
}
|
|
571
|
+
@media (min-width: 768px) {
|
|
507
572
|
.navbar-nav > li.dropdown:hover .dropdown-menu {
|
|
508
573
|
transition: opacity 0.2s cubic-bezier(0.6, 0.2, 0.1, 1), transform 0.2s cubic-bezier(0.6, 0.2, 0.1, 1), visibility 0s linear 0s;
|
|
509
574
|
visibility: visible;
|
|
510
575
|
opacity: 1;
|
|
511
576
|
transform: none;
|
|
512
577
|
}
|
|
513
|
-
}
|
|
578
|
+
}
|
|
579
|
+
.navbar-right li > .dropdown-menu::before,
|
|
514
580
|
.pull-xs-right li > .dropdown-menu::before {
|
|
515
581
|
right: calc((8px * 2) + (8px / 2));
|
|
516
582
|
left: auto;
|
|
517
|
-
}
|
|
583
|
+
}
|
|
584
|
+
[dir="rtl"] .navbar-right li > .dropdown-menu::before,
|
|
518
585
|
[dir="rtl"] .pull-xs-right li > .dropdown-menu::before {
|
|
519
586
|
left: calc((8px * 2) + (8px / 2));
|
|
520
587
|
right: auto;
|
|
521
588
|
right: initial;
|
|
522
|
-
}
|
|
589
|
+
}
|
|
590
|
+
[dir="rtl"] .navbar-right li > .dropdown-menu::before,
|
|
523
591
|
[dir="rtl"] .pull-xs-right li > .dropdown-menu::before {
|
|
524
592
|
right: auto;
|
|
525
593
|
left: auto;
|
|
526
594
|
left: initial;
|
|
527
|
-
}
|
|
595
|
+
}
|
|
596
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
528
597
|
.navbar-right li > .dropdown-menu::before,
|
|
529
598
|
.pull-xs-right li > .dropdown-menu::before {
|
|
530
599
|
right: 16px;
|
|
@@ -535,47 +604,58 @@
|
|
|
535
604
|
right: auto;
|
|
536
605
|
right: initial;
|
|
537
606
|
}
|
|
538
|
-
}
|
|
607
|
+
}
|
|
608
|
+
.navbar-right.dropdown-menu-center::before,
|
|
539
609
|
.pull-xs-right.dropdown-menu-center::before {
|
|
540
610
|
right: auto;
|
|
541
611
|
left: 50%;
|
|
542
612
|
margin-left: -4px;
|
|
543
|
-
}
|
|
613
|
+
}
|
|
614
|
+
[dir="rtl"] .navbar-right.dropdown-menu-center::before,
|
|
544
615
|
[dir="rtl"] .pull-xs-right.dropdown-menu-center::before {
|
|
545
616
|
left: auto;
|
|
546
617
|
right: auto;
|
|
547
618
|
right: initial;
|
|
548
|
-
}
|
|
619
|
+
}
|
|
620
|
+
[dir="rtl"] .navbar-right.dropdown-menu-center::before,
|
|
549
621
|
[dir="rtl"] .pull-xs-right.dropdown-menu-center::before {
|
|
550
622
|
right: 50%;
|
|
551
623
|
left: auto;
|
|
552
624
|
left: initial;
|
|
553
|
-
}
|
|
625
|
+
}
|
|
626
|
+
[dir="rtl"] .navbar-right.dropdown-menu-center::before,
|
|
554
627
|
[dir="rtl"] .pull-xs-right.dropdown-menu-center::before {
|
|
555
628
|
margin-right: -4px;
|
|
556
629
|
margin-left: 0;
|
|
557
630
|
margin-left: initial;
|
|
558
|
-
}
|
|
631
|
+
}
|
|
632
|
+
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
|
|
559
633
|
margin-bottom: 0;
|
|
560
|
-
}
|
|
634
|
+
}
|
|
635
|
+
.navbar-btn {
|
|
561
636
|
margin-top: 13px;
|
|
562
637
|
margin-bottom: 11px;
|
|
563
638
|
font-weight: 600;
|
|
564
639
|
font-weight: var(--font-weight-semi-bold);
|
|
565
|
-
}
|
|
640
|
+
}
|
|
641
|
+
.navbar-btn.btn-sm {
|
|
566
642
|
margin-top: 13px;
|
|
567
643
|
margin-bottom: 11px;
|
|
568
|
-
}
|
|
644
|
+
}
|
|
645
|
+
.navbar-btn.btn-xs {
|
|
569
646
|
margin-top: 18px;
|
|
570
647
|
margin-bottom: 16px;
|
|
571
|
-
}
|
|
648
|
+
}
|
|
649
|
+
@media (max-width: 767px) {
|
|
572
650
|
.navbar-btn {
|
|
573
651
|
display: block;
|
|
574
652
|
}
|
|
575
|
-
}
|
|
653
|
+
}
|
|
654
|
+
.navbar-text {
|
|
576
655
|
margin-top: 17px;
|
|
577
656
|
margin-bottom: 15px;
|
|
578
|
-
}
|
|
657
|
+
}
|
|
658
|
+
@media (min-width: 768px) {
|
|
579
659
|
.navbar-text {
|
|
580
660
|
float: left;
|
|
581
661
|
margin-left: 16px;
|
|
@@ -584,12 +664,19 @@
|
|
|
584
664
|
[dir="rtl"] .navbar-text {
|
|
585
665
|
float: right;
|
|
586
666
|
}
|
|
587
|
-
}
|
|
667
|
+
}
|
|
668
|
+
@media (min-width: 768px) {
|
|
588
669
|
.navbar-left {
|
|
589
|
-
float:
|
|
670
|
+
float: left !important;
|
|
671
|
+
}
|
|
672
|
+
[dir="rtl"] .navbar-left {
|
|
673
|
+
float: right !important;
|
|
590
674
|
}
|
|
591
675
|
.navbar-right {
|
|
592
|
-
float:
|
|
676
|
+
float: right !important;
|
|
677
|
+
}
|
|
678
|
+
[dir="rtl"] .navbar-right {
|
|
679
|
+
float: left !important;
|
|
593
680
|
}
|
|
594
681
|
.navbar-right li > .dropdown-menu::before {
|
|
595
682
|
right: calc((8px * 2) + (8px / 2));
|
|
@@ -633,7 +720,8 @@
|
|
|
633
720
|
margin-right: 0;
|
|
634
721
|
margin-right: initial;
|
|
635
722
|
}
|
|
636
|
-
}
|
|
723
|
+
}
|
|
724
|
+
@media (min-width: 768px) and (min-width: 768px) and (max-width: 991px) {
|
|
637
725
|
.navbar-right li > .dropdown-menu::before {
|
|
638
726
|
right: 16px;
|
|
639
727
|
}
|
|
@@ -642,37 +730,47 @@
|
|
|
642
730
|
right: auto;
|
|
643
731
|
right: initial;
|
|
644
732
|
}
|
|
645
|
-
}
|
|
733
|
+
}
|
|
734
|
+
.navbar-default {
|
|
646
735
|
background-color: transparent;
|
|
647
|
-
}
|
|
736
|
+
}
|
|
737
|
+
.navbar-default .container,
|
|
648
738
|
.navbar-default .container-fluid {
|
|
649
739
|
border-color: rgba(0,0,0,0.10196);
|
|
650
740
|
border-color: var(--color-border-neutral);
|
|
651
|
-
}
|
|
741
|
+
}
|
|
742
|
+
.navbar-default .navbar-brand {
|
|
652
743
|
color: #ffffff;
|
|
653
|
-
}
|
|
744
|
+
}
|
|
745
|
+
.navbar-default .navbar-brand:hover,
|
|
654
746
|
.navbar-default .navbar-brand:focus {
|
|
655
747
|
background-color: transparent;
|
|
656
|
-
}
|
|
748
|
+
}
|
|
749
|
+
.navbar-default .navbar-text {
|
|
657
750
|
color: #37517e;
|
|
658
751
|
color: var(--color-content-primary);
|
|
659
|
-
}
|
|
752
|
+
}
|
|
753
|
+
.navbar-default .navbar-nav > li > a {
|
|
660
754
|
color: #37517e;
|
|
661
755
|
color: var(--color-content-primary);
|
|
662
|
-
}
|
|
756
|
+
}
|
|
757
|
+
@media (min-width: 768px) {
|
|
663
758
|
.navbar-default .navbar-nav > li > a {
|
|
664
759
|
border-bottom: 3px solid transparent;
|
|
665
760
|
}
|
|
666
|
-
}
|
|
761
|
+
}
|
|
762
|
+
.navbar-default .navbar-nav > li > a:hover,
|
|
667
763
|
.navbar-default .navbar-nav > li > a:focus {
|
|
668
764
|
color: #0084b3;
|
|
669
765
|
color: var(--color-content-accent-hover);
|
|
670
766
|
background-color: transparent;
|
|
671
|
-
}
|
|
767
|
+
}
|
|
768
|
+
.navbar-default .navbar-nav > .active > a,
|
|
672
769
|
.navbar-default .navbar-nav > .active > .dropdown-toggle {
|
|
673
770
|
font-weight: 800;
|
|
674
771
|
font-weight: var(--font-weight-bold);
|
|
675
|
-
}
|
|
772
|
+
}
|
|
773
|
+
.navbar-default .navbar-nav > .active > a,
|
|
676
774
|
.navbar-default .navbar-nav > .active > .dropdown-toggle,
|
|
677
775
|
.navbar-default .navbar-nav > .active > a:hover,
|
|
678
776
|
.navbar-default .navbar-nav > .active > .dropdown-toggle:hover,
|
|
@@ -682,14 +780,16 @@
|
|
|
682
780
|
color: var(--color-content-accent-active);
|
|
683
781
|
background-color: transparent;
|
|
684
782
|
border-color: transparent;
|
|
685
|
-
}
|
|
783
|
+
}
|
|
784
|
+
.navbar-default .navbar-nav > .open > a,
|
|
686
785
|
.navbar-default .navbar-nav > .open > a:hover,
|
|
687
786
|
.navbar-default .navbar-nav > .open > a:focus,
|
|
688
787
|
.navbar-default .navbar-nav > .open > a:focus-within {
|
|
689
788
|
background-color: transparent;
|
|
690
789
|
color: #0077a5;
|
|
691
790
|
color: var(--color-content-accent-active);
|
|
692
|
-
}
|
|
791
|
+
}
|
|
792
|
+
@media (max-width: 767px) {
|
|
693
793
|
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
|
694
794
|
color: #0097c7;
|
|
695
795
|
color: var(--color-content-accent);
|
|
@@ -712,53 +812,67 @@
|
|
|
712
812
|
color: var(--color-content-accent-active);
|
|
713
813
|
background-color: transparent;
|
|
714
814
|
}
|
|
715
|
-
}
|
|
815
|
+
}
|
|
816
|
+
.navbar-default .navbar-link {
|
|
716
817
|
color: #0097c7;
|
|
717
818
|
color: var(--color-content-accent);
|
|
718
|
-
}
|
|
819
|
+
}
|
|
820
|
+
.navbar-default .navbar-link:hover {
|
|
719
821
|
color: #0084b3;
|
|
720
822
|
color: var(--color-content-accent-hover);
|
|
721
|
-
}
|
|
823
|
+
}
|
|
824
|
+
.navbar-default .btn-link {
|
|
722
825
|
color: #0097c7;
|
|
723
826
|
color: var(--color-content-accent);
|
|
724
|
-
}
|
|
827
|
+
}
|
|
828
|
+
.navbar-default .btn-link:hover,
|
|
725
829
|
.navbar-default .btn-link:focus {
|
|
726
830
|
color: #0084b3;
|
|
727
831
|
color: var(--color-content-accent-hover);
|
|
728
|
-
}
|
|
832
|
+
}
|
|
833
|
+
.navbar-inverse {
|
|
729
834
|
background-color: transparent;
|
|
730
|
-
}
|
|
835
|
+
}
|
|
836
|
+
.navbar-inverse .container,
|
|
731
837
|
.navbar-inverse .container-fluid {
|
|
732
838
|
border-color: rgba(0,0,0,0.10196);
|
|
733
839
|
border-color: var(--color-border-neutral);
|
|
734
|
-
}
|
|
840
|
+
}
|
|
841
|
+
.navbar-inverse .navbar-brand {
|
|
735
842
|
color: #37517e;
|
|
736
843
|
color: var(--color-content-primary);
|
|
737
|
-
}
|
|
844
|
+
}
|
|
845
|
+
.navbar-inverse .navbar-brand:hover,
|
|
738
846
|
.navbar-inverse .navbar-brand:focus {
|
|
739
847
|
color: #37517e;
|
|
740
848
|
color: var(--color-content-primary);
|
|
741
849
|
background-color: transparent;
|
|
742
|
-
}
|
|
850
|
+
}
|
|
851
|
+
.navbar-inverse .navbar-text {
|
|
743
852
|
color: #ffffff;
|
|
744
|
-
}
|
|
853
|
+
}
|
|
854
|
+
.navbar-inverse .navbar-nav > li > a {
|
|
745
855
|
color: #ffffff;
|
|
746
|
-
}
|
|
856
|
+
}
|
|
857
|
+
@media (min-width: 768px) {
|
|
747
858
|
.navbar-inverse .navbar-nav > li > a {
|
|
748
859
|
border-bottom: 3px solid transparent;
|
|
749
860
|
}
|
|
750
|
-
}
|
|
861
|
+
}
|
|
862
|
+
.navbar-inverse .navbar-nav > li > a:hover,
|
|
751
863
|
.navbar-inverse .navbar-nav > li > a:focus {
|
|
752
864
|
color: #0084b3;
|
|
753
865
|
color: var(--color-content-accent-hover);
|
|
754
866
|
background-color: transparent;
|
|
755
|
-
}
|
|
867
|
+
}
|
|
868
|
+
.navbar-inverse .navbar-nav > .active > a,
|
|
756
869
|
.navbar-inverse .navbar-nav > .active > .dropdown-toggle {
|
|
757
870
|
color: #0077a5;
|
|
758
871
|
color: var(--color-content-accent-active);
|
|
759
872
|
font-weight: 800;
|
|
760
873
|
font-weight: var(--font-weight-bold);
|
|
761
|
-
}
|
|
874
|
+
}
|
|
875
|
+
.navbar-inverse .navbar-nav > .active > a,
|
|
762
876
|
.navbar-inverse .navbar-nav > .active > .dropdown-toggle,
|
|
763
877
|
.navbar-inverse .navbar-nav > .active > a:hover,
|
|
764
878
|
.navbar-inverse .navbar-nav > .active > .dropdown-toggle:hover,
|
|
@@ -768,7 +882,8 @@
|
|
|
768
882
|
color: var(--color-content-accent-hover);
|
|
769
883
|
background-color: transparent;
|
|
770
884
|
border-color: transparent;
|
|
771
|
-
}
|
|
885
|
+
}
|
|
886
|
+
.navbar-inverse .navbar-nav > .open > a,
|
|
772
887
|
.navbar-inverse .navbar-nav .dropdown:focus-within > a,
|
|
773
888
|
.navbar-inverse .navbar-nav > .open > a:hover,
|
|
774
889
|
.navbar-inverse .navbar-nav .dropdown:focus-within > a:hover,
|
|
@@ -777,62 +892,77 @@
|
|
|
777
892
|
background-color: transparent;
|
|
778
893
|
color: #0084b3;
|
|
779
894
|
color: var(--color-content-accent-hover);
|
|
780
|
-
}
|
|
895
|
+
}
|
|
896
|
+
@media (max-width: 767px) {
|
|
781
897
|
.navbar-inverse .navbar-nav > li > a {
|
|
782
898
|
color: #37517e;
|
|
783
899
|
color: var(--color-content-primary);
|
|
784
900
|
}
|
|
785
|
-
}
|
|
901
|
+
}
|
|
902
|
+
.navbar-inverse .navbar-link {
|
|
786
903
|
color: #ffffff;
|
|
787
|
-
}
|
|
904
|
+
}
|
|
905
|
+
.navbar-inverse .navbar-link:hover {
|
|
788
906
|
color: #0084b3;
|
|
789
907
|
color: var(--color-content-accent-hover);
|
|
790
|
-
}
|
|
908
|
+
}
|
|
909
|
+
.navbar-inverse .btn-link {
|
|
791
910
|
color: #ffffff;
|
|
792
|
-
}
|
|
911
|
+
}
|
|
912
|
+
.navbar-inverse .btn-link:hover,
|
|
793
913
|
.navbar-inverse .btn-link:focus {
|
|
794
914
|
color: #0084b3;
|
|
795
915
|
color: var(--color-content-accent-hover);
|
|
796
|
-
}
|
|
916
|
+
}
|
|
917
|
+
.navbar .navbar-brand,
|
|
797
918
|
.navbar-inverse .navbar-brand {
|
|
798
919
|
background-repeat: no-repeat;
|
|
799
920
|
background-position: 50% 50%;
|
|
800
921
|
color: transparent;
|
|
801
|
-
}
|
|
922
|
+
}
|
|
923
|
+
.navbar .navbar-brand:hover,
|
|
802
924
|
.navbar-inverse .navbar-brand:hover,
|
|
803
925
|
.navbar .navbar-brand:focus,
|
|
804
926
|
.navbar-inverse .navbar-brand:focus {
|
|
805
927
|
color: transparent;
|
|
806
|
-
}
|
|
928
|
+
}
|
|
929
|
+
.navbar .flag,
|
|
807
930
|
.navbar .fast-flag {
|
|
808
931
|
height: 24px;
|
|
809
932
|
width: 24px;
|
|
810
933
|
margin-top: 16px;
|
|
811
934
|
margin-right: 8px;
|
|
812
935
|
float: left;
|
|
813
|
-
}
|
|
936
|
+
}
|
|
937
|
+
[dir="rtl"] .navbar .flag,
|
|
814
938
|
[dir="rtl"] .navbar .fast-flag {
|
|
815
939
|
margin-left: 8px;
|
|
816
940
|
margin-right: 0;
|
|
817
941
|
margin-right: initial;
|
|
818
|
-
}
|
|
942
|
+
}
|
|
943
|
+
[dir="rtl"] .navbar .flag,
|
|
819
944
|
[dir="rtl"] .navbar .fast-flag {
|
|
820
945
|
float: right;
|
|
821
|
-
}
|
|
946
|
+
}
|
|
947
|
+
.navbar .logo-text {
|
|
822
948
|
height: 20px;
|
|
823
949
|
width: 104px;
|
|
824
950
|
margin-top: 16.5px;
|
|
825
951
|
margin-right: 8px;
|
|
826
952
|
float: left;
|
|
827
|
-
}
|
|
953
|
+
}
|
|
954
|
+
[dir="rtl"] .navbar .logo-text {
|
|
828
955
|
margin-left: 8px;
|
|
829
956
|
margin-right: 0;
|
|
830
957
|
margin-right: initial;
|
|
831
|
-
}
|
|
958
|
+
}
|
|
959
|
+
[dir="rtl"] .navbar .logo-text {
|
|
832
960
|
float: right;
|
|
833
|
-
}
|
|
961
|
+
}
|
|
962
|
+
.cover {
|
|
834
963
|
display: none;
|
|
835
|
-
}
|
|
964
|
+
}
|
|
965
|
+
@media (max-width: 767px) {
|
|
836
966
|
.navbar-collapse {
|
|
837
967
|
position: fixed;
|
|
838
968
|
bottom: 0;
|
|
@@ -954,33 +1084,41 @@
|
|
|
954
1084
|
.navbar-collapse .navbar-btn.btn-group .dropdown-menu {
|
|
955
1085
|
width: 100%;
|
|
956
1086
|
}
|
|
957
|
-
}
|
|
1087
|
+
}
|
|
1088
|
+
.np-theme-light .navbar .profile-name {
|
|
958
1089
|
padding-bottom: 3px;
|
|
959
|
-
}
|
|
1090
|
+
}
|
|
1091
|
+
.navbar .profile-name .caret {
|
|
960
1092
|
vertical-align: top;
|
|
961
1093
|
line-height: 40px;
|
|
962
|
-
}
|
|
1094
|
+
}
|
|
1095
|
+
.navbar .profile-name .text-ellipses,
|
|
963
1096
|
.navbar .profile-name .text-ellipsis,
|
|
964
1097
|
.navbar .profile-name .truncate {
|
|
965
1098
|
max-width: 75px;
|
|
966
1099
|
display: inline-block;
|
|
967
|
-
}
|
|
1100
|
+
}
|
|
1101
|
+
@media (min-width: 992px) {
|
|
968
1102
|
.navbar .profile-name .text-ellipses,
|
|
969
1103
|
.navbar .profile-name .text-ellipsis,
|
|
970
1104
|
.navbar .profile-name .truncate {
|
|
971
1105
|
max-width: 125px;
|
|
972
1106
|
}
|
|
973
|
-
}
|
|
1107
|
+
}
|
|
1108
|
+
@media (min-width: 1200px) {
|
|
974
1109
|
.navbar .profile-name .text-ellipses,
|
|
975
1110
|
.navbar .profile-name .text-ellipsis,
|
|
976
1111
|
.navbar .profile-name .truncate {
|
|
977
1112
|
max-width: 220px;
|
|
978
1113
|
}
|
|
979
|
-
}
|
|
1114
|
+
}
|
|
1115
|
+
.navbar[data-spy~='affix'] + * {
|
|
980
1116
|
margin-top: 0;
|
|
981
|
-
}
|
|
1117
|
+
}
|
|
1118
|
+
.navbar[data-spy~='affix'].affix + * {
|
|
982
1119
|
margin-top: 56px;
|
|
983
|
-
}
|
|
1120
|
+
}
|
|
1121
|
+
@media (min-width: 768px) {
|
|
984
1122
|
.navbar + .jumbotron,
|
|
985
1123
|
.navbar + .jumbotron-image,
|
|
986
1124
|
.navbar + .jumbotron-image-inverse,
|
|
@@ -992,12 +1130,14 @@
|
|
|
992
1130
|
.navbar.affix + .jumbotron-image-inverse {
|
|
993
1131
|
margin-top: 0;
|
|
994
1132
|
}
|
|
995
|
-
}
|
|
1133
|
+
}
|
|
1134
|
+
.navbar + .jumbotron,
|
|
996
1135
|
.navbar + .jumbotron-image > .jumbotron,
|
|
997
1136
|
.navbar + .jumbotron-image-inverse > .jumbotron,
|
|
998
1137
|
.jumbotron-image-adjacent-to-navbar > .jumbotron {
|
|
999
1138
|
padding-bottom: 64px;
|
|
1000
|
-
}
|
|
1139
|
+
}
|
|
1140
|
+
@media (min-width: 768px) {
|
|
1001
1141
|
.navbar + .jumbotron,
|
|
1002
1142
|
.navbar + .jumbotron-image > .jumbotron,
|
|
1003
1143
|
.navbar + .jumbotron-image-inverse > .jumbotron,
|
|
@@ -1005,20 +1145,24 @@
|
|
|
1005
1145
|
padding-top: 140px;
|
|
1006
1146
|
padding-bottom: 104px;
|
|
1007
1147
|
}
|
|
1008
|
-
}
|
|
1148
|
+
}
|
|
1149
|
+
.navbar > .container .navbar-brand,
|
|
1009
1150
|
.navbar > .container-fluid .navbar-brand {
|
|
1010
1151
|
margin-left: 0;
|
|
1011
|
-
}
|
|
1152
|
+
}
|
|
1153
|
+
[dir="rtl"] .navbar > .container .navbar-brand,
|
|
1012
1154
|
[dir="rtl"] .navbar > .container-fluid .navbar-brand {
|
|
1013
1155
|
margin-right: 0;
|
|
1014
1156
|
margin-left: 0;
|
|
1015
1157
|
margin-left: initial;
|
|
1016
|
-
}
|
|
1158
|
+
}
|
|
1159
|
+
@media (max-width: 767px) {
|
|
1017
1160
|
.navbar-static-top {
|
|
1018
1161
|
background-color: #37517e;
|
|
1019
1162
|
border-bottom-color: transparent;
|
|
1020
1163
|
}
|
|
1021
|
-
}
|
|
1164
|
+
}
|
|
1165
|
+
.navbar-title {
|
|
1022
1166
|
float: left;
|
|
1023
1167
|
font-size: 1.25rem;
|
|
1024
1168
|
font-size: var(--font-size-20);
|
|
@@ -1028,13 +1172,16 @@
|
|
|
1028
1172
|
margin-bottom: 12px;
|
|
1029
1173
|
font-weight: 800;
|
|
1030
1174
|
font-weight: var(--font-weight-bold);
|
|
1031
|
-
}
|
|
1175
|
+
}
|
|
1176
|
+
[dir="rtl"] .navbar-title {
|
|
1032
1177
|
float: right;
|
|
1033
|
-
}
|
|
1178
|
+
}
|
|
1179
|
+
.navbar-subtitle {
|
|
1034
1180
|
font-size: 0.875rem;
|
|
1035
1181
|
font-size: var(--font-size-14);
|
|
1036
1182
|
margin-bottom: 8px;
|
|
1037
|
-
}
|
|
1183
|
+
}
|
|
1184
|
+
.navbar-title,
|
|
1038
1185
|
.navbar-subtitle {
|
|
1039
1186
|
color: #ffffff;
|
|
1040
1187
|
text-overflow: ellipsis;
|
|
@@ -1042,26 +1189,30 @@
|
|
|
1042
1189
|
white-space: nowrap;
|
|
1043
1190
|
display: inline-block;
|
|
1044
1191
|
width: 75%;
|
|
1045
|
-
}
|
|
1192
|
+
}
|
|
1193
|
+
@media (min-width: 992px) {
|
|
1046
1194
|
.navbar-title,
|
|
1047
1195
|
.navbar-subtitle {
|
|
1048
1196
|
color: #37517e;
|
|
1049
1197
|
color: var(--color-content-primary);
|
|
1050
1198
|
width: 100%;
|
|
1051
1199
|
}
|
|
1052
|
-
}
|
|
1200
|
+
}
|
|
1201
|
+
.navbar-logo {
|
|
1053
1202
|
width: 127px;
|
|
1054
1203
|
height: 22px;
|
|
1055
1204
|
margin-top: 13px;
|
|
1056
1205
|
margin-bottom: 21px;
|
|
1057
|
-
}
|
|
1206
|
+
}
|
|
1207
|
+
.nav-toolbar {
|
|
1058
1208
|
padding-top: 16px;
|
|
1059
1209
|
margin-top: -16px;
|
|
1060
1210
|
padding-bottom: 0;
|
|
1061
1211
|
background-color: #37517e;
|
|
1062
1212
|
border-bottom: 1px solid rgba(0,0,0,0.10196);
|
|
1063
1213
|
border-bottom: 1px solid var(--color-border-neutral);
|
|
1064
|
-
}
|
|
1214
|
+
}
|
|
1215
|
+
@media (min-width: 992px) {
|
|
1065
1216
|
.nav-toolbar {
|
|
1066
1217
|
margin-top: 0;
|
|
1067
1218
|
background-color: #ffffff;
|
|
@@ -1079,7 +1230,8 @@
|
|
|
1079
1230
|
.nav-toolbar.affix + .container-fluid {
|
|
1080
1231
|
margin-top: 64px !important;
|
|
1081
1232
|
}
|
|
1082
|
-
}
|
|
1233
|
+
}
|
|
1234
|
+
@media (max-width: 991px) {
|
|
1083
1235
|
.nav-toolbar.affix {
|
|
1084
1236
|
position: relative !important;
|
|
1085
1237
|
}
|
|
@@ -1106,52 +1258,66 @@
|
|
|
1106
1258
|
.nav-toolbar .input-group-addon {
|
|
1107
1259
|
border-color: #ffffff;
|
|
1108
1260
|
}
|
|
1109
|
-
}
|
|
1261
|
+
}
|
|
1262
|
+
.nav-toolbar h1 {
|
|
1110
1263
|
line-height: 1.2;
|
|
1111
1264
|
line-height: var(--line-height-title);
|
|
1112
|
-
}
|
|
1265
|
+
}
|
|
1266
|
+
.nav-toolbar .close {
|
|
1113
1267
|
-webkit-text-decoration: none;
|
|
1114
1268
|
text-decoration: none;
|
|
1115
1269
|
height: 32px;
|
|
1116
|
-
}
|
|
1270
|
+
}
|
|
1271
|
+
@media (min-width: 992px) {
|
|
1117
1272
|
.nav-toolbar--compact {
|
|
1118
1273
|
padding-top: 0;
|
|
1119
1274
|
}
|
|
1120
|
-
}
|
|
1275
|
+
}
|
|
1276
|
+
@media (min-width: 992px) {
|
|
1121
1277
|
.column-layout .nav-toolbar.affix {
|
|
1122
1278
|
width: calc(100% - 264px);
|
|
1123
1279
|
}
|
|
1124
|
-
}
|
|
1280
|
+
}
|
|
1281
|
+
.simple-nav {
|
|
1125
1282
|
background-color: #37517e;
|
|
1126
|
-
}
|
|
1283
|
+
}
|
|
1284
|
+
.simple-nav .navbar-nav > li > a {
|
|
1127
1285
|
padding-top: 12px;
|
|
1128
1286
|
padding-bottom: 9px;
|
|
1129
|
-
}
|
|
1287
|
+
}
|
|
1288
|
+
.simple-nav .navbar-header {
|
|
1130
1289
|
padding-top: 4px;
|
|
1131
1290
|
width: calc(100% - 140px);
|
|
1132
|
-
}
|
|
1291
|
+
}
|
|
1292
|
+
@media (min-width: 768px) {
|
|
1133
1293
|
.simple-nav .navbar-header {
|
|
1134
1294
|
width: calc(100% - 340px);
|
|
1135
1295
|
}
|
|
1136
|
-
}
|
|
1296
|
+
}
|
|
1297
|
+
.simple-nav .navbar-nav > li > a.dropdown-toggle {
|
|
1137
1298
|
height: 64px;
|
|
1138
|
-
}
|
|
1299
|
+
}
|
|
1300
|
+
.simple-nav > .navbar-right li > a {
|
|
1139
1301
|
float: right;
|
|
1140
|
-
}
|
|
1302
|
+
}
|
|
1303
|
+
[dir="rtl"] .simple-nav > .navbar-right li > a {
|
|
1141
1304
|
float: left;
|
|
1142
|
-
}
|
|
1305
|
+
}
|
|
1306
|
+
@media (min-width: 576px) {
|
|
1143
1307
|
.simple-nav .navbar-nav > li > a {
|
|
1144
1308
|
font-size: 1rem !important;
|
|
1145
1309
|
font-size: var(--font-size-16) !important;
|
|
1146
1310
|
}
|
|
1147
|
-
}
|
|
1311
|
+
}
|
|
1312
|
+
@media (min-width: 992px) {
|
|
1148
1313
|
.simple-nav {
|
|
1149
1314
|
background-color: #ffffff;
|
|
1150
1315
|
background-color: var(--color-background-screen);
|
|
1151
1316
|
border-bottom: 1px solid rgba(0,0,0,0.10196);
|
|
1152
1317
|
border-bottom: 1px solid var(--color-border-neutral);
|
|
1153
1318
|
}
|
|
1154
|
-
}
|
|
1319
|
+
}
|
|
1320
|
+
@media (max-width: 991px) {
|
|
1155
1321
|
.simple-nav .navbar-nav > li > a {
|
|
1156
1322
|
color: #ffffff;
|
|
1157
1323
|
}
|
|
@@ -1161,17 +1327,21 @@
|
|
|
1161
1327
|
color: #0084b3;
|
|
1162
1328
|
color: var(--color-content-accent-hover);
|
|
1163
1329
|
}
|
|
1164
|
-
}
|
|
1330
|
+
}
|
|
1331
|
+
.simple-nav .profile-name .text-ellipses,
|
|
1165
1332
|
.simple-nav .profile-name .text-ellipsis,
|
|
1166
1333
|
.simple-nav .profile-name .truncate {
|
|
1167
1334
|
max-width: 240px;
|
|
1168
|
-
}
|
|
1335
|
+
}
|
|
1336
|
+
.tw-public-navigation-item-content__icon {
|
|
1169
1337
|
vertical-align: middle;
|
|
1170
|
-
}
|
|
1338
|
+
}
|
|
1339
|
+
.tw-public-navigation-item-content__text {
|
|
1171
1340
|
display: inline-block;
|
|
1172
1341
|
vertical-align: middle;
|
|
1173
1342
|
max-width: 164px;
|
|
1174
|
-
}
|
|
1343
|
+
}
|
|
1344
|
+
@media (min-width: 768px) {
|
|
1175
1345
|
.subnav {
|
|
1176
1346
|
height: 128px !important;
|
|
1177
1347
|
position: relative;
|
|
@@ -1211,4 +1381,5 @@
|
|
|
1211
1381
|
position: absolute;
|
|
1212
1382
|
top: 64px;
|
|
1213
1383
|
}
|
|
1214
|
-
}
|
|
1384
|
+
}
|
|
1385
|
+
/* stylelint-enable */
|