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