@transferwise/neptune-css 0.0.0-experimental-2acee4e → 0.0.0-experimental-b089b8c
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 +2 -2
- package/dist/css/flex.css +4 -4
- package/dist/css/neptune-addons.css +4 -4
- package/dist/css/neptune-core.css +14 -14
- package/dist/css/neptune.css +1264 -147
- package/dist/css/utilities.css +6 -9
- package/package.json +1 -1
- package/src/less/core/_scaffolding.less +9 -0
- package/src/less/core/_typography-utilities.less +7 -1
- package/src/less/neptune.bundle.less +3 -1
- package/src/less/utilities/border-radius.less +2 -2
- package/src/less/utilities/display.less +4 -4
- package/src/less/utilities.less +0 -1
- package/src/less/utilities/font-style.less +0 -3
package/dist/css/neptune.css
CHANGED
|
@@ -1933,6 +1933,16 @@ video {
|
|
|
1933
1933
|
vertical-align: middle;
|
|
1934
1934
|
}
|
|
1935
1935
|
|
|
1936
|
+
.img-rounded {
|
|
1937
|
+
border-radius: 10px;
|
|
1938
|
+
border-radius: var(--radius-small);
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1941
|
+
.img-circle {
|
|
1942
|
+
border-radius: 9999px;
|
|
1943
|
+
border-radius: var(--radius-full);
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1936
1946
|
.disabled,
|
|
1937
1947
|
:disabled {
|
|
1938
1948
|
filter: grayscale(1);
|
|
@@ -3093,6 +3103,14 @@ kbd kbd {
|
|
|
3093
3103
|
|
|
3094
3104
|
/* TODO: Remove utility imports to prevent duplicates */
|
|
3095
3105
|
|
|
3106
|
+
/**
|
|
3107
|
+
* @deprecated Obsolete since the brand has turned green.
|
|
3108
|
+
*/
|
|
3109
|
+
|
|
3110
|
+
.font-italic {
|
|
3111
|
+
font-style: italic !important;
|
|
3112
|
+
}
|
|
3113
|
+
|
|
3096
3114
|
/**
|
|
3097
3115
|
* @deprecated Obsolete since the brand has turned green.
|
|
3098
3116
|
*/
|
|
@@ -4107,7 +4125,7 @@ html:not([dir="rtl"]) .p-x-panel {
|
|
|
4107
4125
|
display: none !important;
|
|
4108
4126
|
}
|
|
4109
4127
|
|
|
4110
|
-
@media
|
|
4128
|
+
@media (max-width: 575px) {
|
|
4111
4129
|
.hidden-xs {
|
|
4112
4130
|
display: none !important;
|
|
4113
4131
|
}
|
|
@@ -4132,7 +4150,7 @@ html:not([dir="rtl"]) .p-x-panel {
|
|
|
4132
4150
|
}
|
|
4133
4151
|
}
|
|
4134
4152
|
|
|
4135
|
-
@media (
|
|
4153
|
+
@media (min-width: 576px) and (max-width: 767px) {
|
|
4136
4154
|
.hidden-sm {
|
|
4137
4155
|
display: none !important;
|
|
4138
4156
|
}
|
|
@@ -4157,7 +4175,7 @@ html:not([dir="rtl"]) .p-x-panel {
|
|
|
4157
4175
|
}
|
|
4158
4176
|
}
|
|
4159
4177
|
|
|
4160
|
-
@media (
|
|
4178
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
4161
4179
|
.hidden-md {
|
|
4162
4180
|
display: none !important;
|
|
4163
4181
|
}
|
|
@@ -4182,7 +4200,7 @@ html:not([dir="rtl"]) .p-x-panel {
|
|
|
4182
4200
|
}
|
|
4183
4201
|
}
|
|
4184
4202
|
|
|
4185
|
-
@media (
|
|
4203
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
|
4186
4204
|
.hidden-lg {
|
|
4187
4205
|
display: none !important;
|
|
4188
4206
|
}
|
|
@@ -5305,12 +5323,12 @@ a.badge:focus {
|
|
|
5305
5323
|
border-radius: 2px;
|
|
5306
5324
|
}
|
|
5307
5325
|
|
|
5308
|
-
.
|
|
5326
|
+
.rounded {
|
|
5309
5327
|
border-radius: 10px;
|
|
5310
5328
|
border-radius: var(--radius-small);
|
|
5311
5329
|
}
|
|
5312
5330
|
|
|
5313
|
-
.
|
|
5331
|
+
.rounded-full {
|
|
5314
5332
|
border-radius: 9999px;
|
|
5315
5333
|
border-radius: var(--radius-full);
|
|
5316
5334
|
}
|
|
@@ -7009,6 +7027,56 @@ a.btn {
|
|
|
7009
7027
|
clear: both;
|
|
7010
7028
|
}
|
|
7011
7029
|
|
|
7030
|
+
.btn-toolbar::before,
|
|
7031
|
+
.btn-toolbar::after {
|
|
7032
|
+
content: " ";
|
|
7033
|
+
display: table;
|
|
7034
|
+
}
|
|
7035
|
+
|
|
7036
|
+
.btn-toolbar::after {
|
|
7037
|
+
clear: both;
|
|
7038
|
+
}
|
|
7039
|
+
|
|
7040
|
+
.btn-toolbar::before,
|
|
7041
|
+
.btn-toolbar::after {
|
|
7042
|
+
content: " ";
|
|
7043
|
+
display: table;
|
|
7044
|
+
}
|
|
7045
|
+
|
|
7046
|
+
.btn-toolbar::after {
|
|
7047
|
+
clear: both;
|
|
7048
|
+
}
|
|
7049
|
+
|
|
7050
|
+
.btn-toolbar::before,
|
|
7051
|
+
.btn-toolbar::after {
|
|
7052
|
+
content: " ";
|
|
7053
|
+
display: table;
|
|
7054
|
+
}
|
|
7055
|
+
|
|
7056
|
+
.btn-toolbar::after {
|
|
7057
|
+
clear: both;
|
|
7058
|
+
}
|
|
7059
|
+
|
|
7060
|
+
.btn-toolbar::before,
|
|
7061
|
+
.btn-toolbar::after {
|
|
7062
|
+
content: " ";
|
|
7063
|
+
display: table;
|
|
7064
|
+
}
|
|
7065
|
+
|
|
7066
|
+
.btn-toolbar::after {
|
|
7067
|
+
clear: both;
|
|
7068
|
+
}
|
|
7069
|
+
|
|
7070
|
+
.btn-toolbar::before,
|
|
7071
|
+
.btn-toolbar::after {
|
|
7072
|
+
content: " ";
|
|
7073
|
+
display: table;
|
|
7074
|
+
}
|
|
7075
|
+
|
|
7076
|
+
.btn-toolbar::after {
|
|
7077
|
+
clear: both;
|
|
7078
|
+
}
|
|
7079
|
+
|
|
7012
7080
|
.btn-toolbar .btn,
|
|
7013
7081
|
.btn-toolbar .btn-group,
|
|
7014
7082
|
.btn-toolbar .input-group {
|
|
@@ -7464,6 +7532,56 @@ html:not([dir="rtl"]) .btn-group .btn + .btn-primary {
|
|
|
7464
7532
|
clear: both;
|
|
7465
7533
|
}
|
|
7466
7534
|
|
|
7535
|
+
.btn-group.btn-block::before,
|
|
7536
|
+
.btn-group.btn-block::after {
|
|
7537
|
+
content: " ";
|
|
7538
|
+
display: table;
|
|
7539
|
+
}
|
|
7540
|
+
|
|
7541
|
+
.btn-group.btn-block::after {
|
|
7542
|
+
clear: both;
|
|
7543
|
+
}
|
|
7544
|
+
|
|
7545
|
+
.btn-group.btn-block::before,
|
|
7546
|
+
.btn-group.btn-block::after {
|
|
7547
|
+
content: " ";
|
|
7548
|
+
display: table;
|
|
7549
|
+
}
|
|
7550
|
+
|
|
7551
|
+
.btn-group.btn-block::after {
|
|
7552
|
+
clear: both;
|
|
7553
|
+
}
|
|
7554
|
+
|
|
7555
|
+
.btn-group.btn-block::before,
|
|
7556
|
+
.btn-group.btn-block::after {
|
|
7557
|
+
content: " ";
|
|
7558
|
+
display: table;
|
|
7559
|
+
}
|
|
7560
|
+
|
|
7561
|
+
.btn-group.btn-block::after {
|
|
7562
|
+
clear: both;
|
|
7563
|
+
}
|
|
7564
|
+
|
|
7565
|
+
.btn-group.btn-block::before,
|
|
7566
|
+
.btn-group.btn-block::after {
|
|
7567
|
+
content: " ";
|
|
7568
|
+
display: table;
|
|
7569
|
+
}
|
|
7570
|
+
|
|
7571
|
+
.btn-group.btn-block::after {
|
|
7572
|
+
clear: both;
|
|
7573
|
+
}
|
|
7574
|
+
|
|
7575
|
+
.btn-group.btn-block::before,
|
|
7576
|
+
.btn-group.btn-block::after {
|
|
7577
|
+
content: " ";
|
|
7578
|
+
display: table;
|
|
7579
|
+
}
|
|
7580
|
+
|
|
7581
|
+
.btn-group.btn-block::after {
|
|
7582
|
+
clear: both;
|
|
7583
|
+
}
|
|
7584
|
+
|
|
7467
7585
|
.btn-group.btn-block .btn {
|
|
7468
7586
|
display: block;
|
|
7469
7587
|
width: 100%;
|
|
@@ -13162,6 +13280,56 @@ li > a > .currency-flag:first-child {
|
|
|
13162
13280
|
clear: both;
|
|
13163
13281
|
}
|
|
13164
13282
|
|
|
13283
|
+
.container::before,
|
|
13284
|
+
.container::after {
|
|
13285
|
+
content: " ";
|
|
13286
|
+
display: table;
|
|
13287
|
+
}
|
|
13288
|
+
|
|
13289
|
+
.container::after {
|
|
13290
|
+
clear: both;
|
|
13291
|
+
}
|
|
13292
|
+
|
|
13293
|
+
.container::before,
|
|
13294
|
+
.container::after {
|
|
13295
|
+
content: " ";
|
|
13296
|
+
display: table;
|
|
13297
|
+
}
|
|
13298
|
+
|
|
13299
|
+
.container::after {
|
|
13300
|
+
clear: both;
|
|
13301
|
+
}
|
|
13302
|
+
|
|
13303
|
+
.container::before,
|
|
13304
|
+
.container::after {
|
|
13305
|
+
content: " ";
|
|
13306
|
+
display: table;
|
|
13307
|
+
}
|
|
13308
|
+
|
|
13309
|
+
.container::after {
|
|
13310
|
+
clear: both;
|
|
13311
|
+
}
|
|
13312
|
+
|
|
13313
|
+
.container::before,
|
|
13314
|
+
.container::after {
|
|
13315
|
+
content: " ";
|
|
13316
|
+
display: table;
|
|
13317
|
+
}
|
|
13318
|
+
|
|
13319
|
+
.container::after {
|
|
13320
|
+
clear: both;
|
|
13321
|
+
}
|
|
13322
|
+
|
|
13323
|
+
.container::before,
|
|
13324
|
+
.container::after {
|
|
13325
|
+
content: " ";
|
|
13326
|
+
display: table;
|
|
13327
|
+
}
|
|
13328
|
+
|
|
13329
|
+
.container::after {
|
|
13330
|
+
clear: both;
|
|
13331
|
+
}
|
|
13332
|
+
|
|
13165
13333
|
@media (min-width: 1200px) {
|
|
13166
13334
|
.container {
|
|
13167
13335
|
max-width: 1164px;
|
|
@@ -13254,6 +13422,56 @@ li > a > .currency-flag:first-child {
|
|
|
13254
13422
|
clear: both;
|
|
13255
13423
|
}
|
|
13256
13424
|
|
|
13425
|
+
.row::before,
|
|
13426
|
+
.row::after {
|
|
13427
|
+
content: " ";
|
|
13428
|
+
display: table;
|
|
13429
|
+
}
|
|
13430
|
+
|
|
13431
|
+
.row::after {
|
|
13432
|
+
clear: both;
|
|
13433
|
+
}
|
|
13434
|
+
|
|
13435
|
+
.row::before,
|
|
13436
|
+
.row::after {
|
|
13437
|
+
content: " ";
|
|
13438
|
+
display: table;
|
|
13439
|
+
}
|
|
13440
|
+
|
|
13441
|
+
.row::after {
|
|
13442
|
+
clear: both;
|
|
13443
|
+
}
|
|
13444
|
+
|
|
13445
|
+
.row::before,
|
|
13446
|
+
.row::after {
|
|
13447
|
+
content: " ";
|
|
13448
|
+
display: table;
|
|
13449
|
+
}
|
|
13450
|
+
|
|
13451
|
+
.row::after {
|
|
13452
|
+
clear: both;
|
|
13453
|
+
}
|
|
13454
|
+
|
|
13455
|
+
.row::before,
|
|
13456
|
+
.row::after {
|
|
13457
|
+
content: " ";
|
|
13458
|
+
display: table;
|
|
13459
|
+
}
|
|
13460
|
+
|
|
13461
|
+
.row::after {
|
|
13462
|
+
clear: both;
|
|
13463
|
+
}
|
|
13464
|
+
|
|
13465
|
+
.row::before,
|
|
13466
|
+
.row::after {
|
|
13467
|
+
content: " ";
|
|
13468
|
+
display: table;
|
|
13469
|
+
}
|
|
13470
|
+
|
|
13471
|
+
.row::after {
|
|
13472
|
+
clear: both;
|
|
13473
|
+
}
|
|
13474
|
+
|
|
13257
13475
|
.col-xs-1,
|
|
13258
13476
|
.col-sm-1,
|
|
13259
13477
|
.col-md-1,
|
|
@@ -18276,15 +18494,101 @@ html:not([dir="rtl"]) .nav-stacked > li.active > a:focus {
|
|
|
18276
18494
|
clear: both;
|
|
18277
18495
|
}
|
|
18278
18496
|
|
|
18279
|
-
.
|
|
18280
|
-
|
|
18281
|
-
|
|
18282
|
-
|
|
18283
|
-
|
|
18284
|
-
|
|
18497
|
+
.clearfix::before,
|
|
18498
|
+
.clearfix::after,
|
|
18499
|
+
.btn-group-vertical > .btn-group::before,
|
|
18500
|
+
.btn-group-vertical > .btn-group::after,
|
|
18501
|
+
.form-horizontal .form-group::before,
|
|
18502
|
+
.form-horizontal .form-group::after,
|
|
18503
|
+
.container::before,
|
|
18504
|
+
.container::after,
|
|
18505
|
+
.container-fluid::before,
|
|
18506
|
+
.container-fluid::after,
|
|
18507
|
+
.row::before,
|
|
18508
|
+
.row::after,
|
|
18509
|
+
.nav::before,
|
|
18510
|
+
.nav::after,
|
|
18511
|
+
.navbar::before,
|
|
18512
|
+
.navbar::after,
|
|
18513
|
+
.navbar-header::before,
|
|
18514
|
+
.navbar-header::after,
|
|
18515
|
+
.navbar-collapse::before,
|
|
18516
|
+
.navbar-collapse::after,
|
|
18517
|
+
.modal-footer::before,
|
|
18518
|
+
.modal-footer::after,
|
|
18519
|
+
.panel-body::before,
|
|
18520
|
+
.panel-body::after {
|
|
18521
|
+
content: " ";
|
|
18522
|
+
display: table;
|
|
18285
18523
|
}
|
|
18286
18524
|
|
|
18287
|
-
|
|
18525
|
+
.clearfix::after,
|
|
18526
|
+
.btn-group-vertical > .btn-group::after,
|
|
18527
|
+
.form-horizontal .form-group::after,
|
|
18528
|
+
.container::after,
|
|
18529
|
+
.container-fluid::after,
|
|
18530
|
+
.row::after,
|
|
18531
|
+
.nav::after,
|
|
18532
|
+
.navbar::after,
|
|
18533
|
+
.navbar-header::after,
|
|
18534
|
+
.navbar-collapse::after,
|
|
18535
|
+
.modal-footer::after,
|
|
18536
|
+
.panel-body::after {
|
|
18537
|
+
clear: both;
|
|
18538
|
+
}
|
|
18539
|
+
|
|
18540
|
+
.clearfix::before,
|
|
18541
|
+
.clearfix::after,
|
|
18542
|
+
.btn-group-vertical > .btn-group::before,
|
|
18543
|
+
.btn-group-vertical > .btn-group::after,
|
|
18544
|
+
.form-horizontal .form-group::before,
|
|
18545
|
+
.form-horizontal .form-group::after,
|
|
18546
|
+
.container::before,
|
|
18547
|
+
.container::after,
|
|
18548
|
+
.container-fluid::before,
|
|
18549
|
+
.container-fluid::after,
|
|
18550
|
+
.row::before,
|
|
18551
|
+
.row::after,
|
|
18552
|
+
.nav::before,
|
|
18553
|
+
.nav::after,
|
|
18554
|
+
.navbar::before,
|
|
18555
|
+
.navbar::after,
|
|
18556
|
+
.navbar-header::before,
|
|
18557
|
+
.navbar-header::after,
|
|
18558
|
+
.navbar-collapse::before,
|
|
18559
|
+
.navbar-collapse::after,
|
|
18560
|
+
.modal-footer::before,
|
|
18561
|
+
.modal-footer::after,
|
|
18562
|
+
.panel-body::before,
|
|
18563
|
+
.panel-body::after {
|
|
18564
|
+
content: " ";
|
|
18565
|
+
display: table;
|
|
18566
|
+
}
|
|
18567
|
+
|
|
18568
|
+
.clearfix::after,
|
|
18569
|
+
.btn-group-vertical > .btn-group::after,
|
|
18570
|
+
.form-horizontal .form-group::after,
|
|
18571
|
+
.container::after,
|
|
18572
|
+
.container-fluid::after,
|
|
18573
|
+
.row::after,
|
|
18574
|
+
.nav::after,
|
|
18575
|
+
.navbar::after,
|
|
18576
|
+
.navbar-header::after,
|
|
18577
|
+
.navbar-collapse::after,
|
|
18578
|
+
.modal-footer::after,
|
|
18579
|
+
.panel-body::after {
|
|
18580
|
+
clear: both;
|
|
18581
|
+
}
|
|
18582
|
+
|
|
18583
|
+
.tw-select .tw-icon {
|
|
18584
|
+
display: inline-block;
|
|
18585
|
+
margin-right: 8px;
|
|
18586
|
+
margin-right: var(--size-8);
|
|
18587
|
+
margin-top: -2px;
|
|
18588
|
+
vertical-align: middle;
|
|
18589
|
+
}
|
|
18590
|
+
|
|
18591
|
+
[dir="rtl"] .tw-select .tw-icon {
|
|
18288
18592
|
margin-left: 8px;
|
|
18289
18593
|
margin-left: var(--size-8);
|
|
18290
18594
|
margin-right: 0;
|
|
@@ -22631,92 +22935,721 @@ a[data-toggle="tooltip"] {
|
|
|
22631
22935
|
width: 11px;
|
|
22632
22936
|
}
|
|
22633
22937
|
|
|
22634
|
-
.
|
|
22635
|
-
|
|
22636
|
-
|
|
22637
|
-
|
|
22638
|
-
|
|
22639
|
-
|
|
22640
|
-
|
|
22641
|
-
|
|
22938
|
+
.well,
|
|
22939
|
+
.well-xs {
|
|
22940
|
+
min-height: 24px;
|
|
22941
|
+
min-height: var(--size-24);
|
|
22942
|
+
margin-bottom: 24px;
|
|
22943
|
+
margin-bottom: var(--size-24);
|
|
22944
|
+
border-radius: 10px;
|
|
22945
|
+
border-radius: var(--radius-small);
|
|
22946
|
+
border: solid 1px rgba(0,0,0,0.10196);
|
|
22947
|
+
border: solid 1px var(--color-border-neutral);
|
|
22948
|
+
padding: 24px;
|
|
22949
|
+
padding: var(--size-24);
|
|
22950
|
+
box-shadow: none;
|
|
22642
22951
|
}
|
|
22643
22952
|
|
|
22644
|
-
|
|
22645
|
-
|
|
22646
|
-
|
|
22953
|
+
@media only screen and (min-width: 576px) {
|
|
22954
|
+
.well-sm {
|
|
22955
|
+
min-height: 24px;
|
|
22956
|
+
min-height: var(--size-24);
|
|
22957
|
+
margin-bottom: 24px;
|
|
22958
|
+
margin-bottom: var(--size-24);
|
|
22959
|
+
border-radius: 10px;
|
|
22960
|
+
border-radius: var(--radius-small);
|
|
22961
|
+
border: solid 1px rgba(0,0,0,0.10196);
|
|
22962
|
+
border: solid 1px var(--color-border-neutral);
|
|
22963
|
+
padding: 24px;
|
|
22964
|
+
padding: var(--size-24);
|
|
22965
|
+
box-shadow: none;
|
|
22966
|
+
}
|
|
22647
22967
|
}
|
|
22648
22968
|
|
|
22649
|
-
|
|
22650
|
-
|
|
22651
|
-
|
|
22969
|
+
@media only screen and (min-width: 768px) {
|
|
22970
|
+
.well-md {
|
|
22971
|
+
min-height: 24px;
|
|
22972
|
+
min-height: var(--size-24);
|
|
22973
|
+
margin-bottom: 24px;
|
|
22974
|
+
margin-bottom: var(--size-24);
|
|
22975
|
+
border-radius: 10px;
|
|
22976
|
+
border-radius: var(--radius-small);
|
|
22977
|
+
border: solid 1px rgba(0,0,0,0.10196);
|
|
22978
|
+
border: solid 1px var(--color-border-neutral);
|
|
22979
|
+
padding: 24px;
|
|
22980
|
+
padding: var(--size-24);
|
|
22981
|
+
box-shadow: none;
|
|
22982
|
+
}
|
|
22652
22983
|
}
|
|
22653
22984
|
|
|
22654
|
-
|
|
22655
|
-
.
|
|
22656
|
-
|
|
22657
|
-
|
|
22985
|
+
@media only screen and (min-width: 992px) {
|
|
22986
|
+
.well-lg {
|
|
22987
|
+
min-height: 24px;
|
|
22988
|
+
min-height: var(--size-24);
|
|
22989
|
+
margin-bottom: 24px;
|
|
22990
|
+
margin-bottom: var(--size-24);
|
|
22991
|
+
border-radius: 10px;
|
|
22992
|
+
border-radius: var(--radius-small);
|
|
22993
|
+
border: solid 1px rgba(0,0,0,0.10196);
|
|
22994
|
+
border: solid 1px var(--color-border-neutral);
|
|
22995
|
+
padding: 24px;
|
|
22996
|
+
padding: var(--size-24);
|
|
22997
|
+
box-shadow: none;
|
|
22998
|
+
}
|
|
22658
22999
|
}
|
|
22659
23000
|
|
|
22660
|
-
|
|
22661
|
-
.
|
|
22662
|
-
|
|
23001
|
+
@media only screen and (min-width: 1200px) {
|
|
23002
|
+
.well-xl {
|
|
23003
|
+
min-height: 24px;
|
|
23004
|
+
min-height: var(--size-24);
|
|
23005
|
+
margin-bottom: 24px;
|
|
23006
|
+
margin-bottom: var(--size-24);
|
|
23007
|
+
border-radius: 10px;
|
|
23008
|
+
border-radius: var(--radius-small);
|
|
23009
|
+
border: solid 1px rgba(0,0,0,0.10196);
|
|
23010
|
+
border: solid 1px var(--color-border-neutral);
|
|
23011
|
+
padding: 24px;
|
|
23012
|
+
padding: var(--size-24);
|
|
23013
|
+
box-shadow: none;
|
|
23014
|
+
}
|
|
22663
23015
|
}
|
|
22664
23016
|
|
|
22665
|
-
.
|
|
22666
|
-
|
|
22667
|
-
|
|
22668
|
-
|
|
23017
|
+
.center-block {
|
|
23018
|
+
margin-left: auto;
|
|
23019
|
+
margin-right: auto;
|
|
23020
|
+
display: block;
|
|
22669
23021
|
}
|
|
22670
23022
|
|
|
22671
|
-
.
|
|
22672
|
-
|
|
22673
|
-
color: #ffa6a9 !important;
|
|
23023
|
+
.align-items-start {
|
|
23024
|
+
align-items: flex-start;
|
|
22674
23025
|
}
|
|
22675
23026
|
|
|
22676
|
-
.
|
|
22677
|
-
|
|
22678
|
-
color: var(--color-sentiment-positive) !important;
|
|
22679
|
-
/* @DEPRECATED: .bg-primary use .bg-elevated or ThemeProvider with theme="forest-green" instead */
|
|
23027
|
+
.align-items-end {
|
|
23028
|
+
align-items: flex-end;
|
|
22680
23029
|
}
|
|
22681
23030
|
|
|
22682
|
-
.
|
|
22683
|
-
|
|
22684
|
-
color: #6fd698 !important;
|
|
23031
|
+
.align-items-center {
|
|
23032
|
+
align-items: center;
|
|
22685
23033
|
}
|
|
22686
23034
|
|
|
22687
|
-
|
|
22688
|
-
|
|
22689
|
-
*/
|
|
22690
|
-
|
|
22691
|
-
.text-warning {
|
|
22692
|
-
color: var(--color-sentiment-warning) !important;
|
|
22693
|
-
/* @DEPRECATED: .bg-primary use .bg-elevated or ThemeProvider with theme="forest-green" instead */
|
|
23035
|
+
.align-items-baseline {
|
|
23036
|
+
align-items: baseline;
|
|
22694
23037
|
}
|
|
22695
23038
|
|
|
22696
|
-
.
|
|
22697
|
-
|
|
23039
|
+
.align-items-stretch {
|
|
23040
|
+
align-items: stretch;
|
|
22698
23041
|
}
|
|
22699
23042
|
|
|
22700
|
-
|
|
22701
|
-
|
|
22702
|
-
|
|
22703
|
-
|
|
22704
|
-
.
|
|
22705
|
-
|
|
23043
|
+
@media (min-width: 576px) {
|
|
23044
|
+
.align-items-start--sm {
|
|
23045
|
+
align-items: flex-start;
|
|
23046
|
+
}
|
|
23047
|
+
.align-items-end--sm {
|
|
23048
|
+
align-items: flex-end;
|
|
23049
|
+
}
|
|
23050
|
+
.align-items-center--sm {
|
|
23051
|
+
align-items: center;
|
|
23052
|
+
}
|
|
23053
|
+
.align-items-baseline--sm {
|
|
23054
|
+
align-items: baseline;
|
|
23055
|
+
}
|
|
23056
|
+
.align-items-stretch--sm {
|
|
23057
|
+
align-items: stretch;
|
|
23058
|
+
}
|
|
22706
23059
|
}
|
|
22707
23060
|
|
|
22708
|
-
|
|
22709
|
-
|
|
22710
|
-
|
|
23061
|
+
@media (min-width: 768px) {
|
|
23062
|
+
.align-items-start--md {
|
|
23063
|
+
align-items: flex-start;
|
|
23064
|
+
}
|
|
23065
|
+
.align-items-end--md {
|
|
23066
|
+
align-items: flex-end;
|
|
23067
|
+
}
|
|
23068
|
+
.align-items-center--md {
|
|
23069
|
+
align-items: center;
|
|
23070
|
+
}
|
|
23071
|
+
.align-items-baseline--md {
|
|
23072
|
+
align-items: baseline;
|
|
23073
|
+
}
|
|
23074
|
+
.align-items-stretch--md {
|
|
23075
|
+
align-items: stretch;
|
|
23076
|
+
}
|
|
22711
23077
|
}
|
|
22712
23078
|
|
|
22713
|
-
|
|
22714
|
-
|
|
23079
|
+
@media (min-width: 992px) {
|
|
23080
|
+
.align-items-start--lg {
|
|
23081
|
+
align-items: flex-start;
|
|
23082
|
+
}
|
|
23083
|
+
.align-items-end--lg {
|
|
23084
|
+
align-items: flex-end;
|
|
23085
|
+
}
|
|
23086
|
+
.align-items-center--lg {
|
|
23087
|
+
align-items: center;
|
|
23088
|
+
}
|
|
23089
|
+
.align-items-baseline--lg {
|
|
23090
|
+
align-items: baseline;
|
|
23091
|
+
}
|
|
23092
|
+
.align-items-stretch--lg {
|
|
23093
|
+
align-items: stretch;
|
|
23094
|
+
}
|
|
22715
23095
|
}
|
|
22716
23096
|
|
|
22717
|
-
|
|
22718
|
-
|
|
22719
|
-
|
|
23097
|
+
@media (min-width: 1200px) {
|
|
23098
|
+
.align-items-start--xl {
|
|
23099
|
+
align-items: flex-start;
|
|
23100
|
+
}
|
|
23101
|
+
.align-items-end--xl {
|
|
23102
|
+
align-items: flex-end;
|
|
23103
|
+
}
|
|
23104
|
+
.align-items-center--xl {
|
|
23105
|
+
align-items: center;
|
|
23106
|
+
}
|
|
23107
|
+
.align-items-baseline--xl {
|
|
23108
|
+
align-items: baseline;
|
|
23109
|
+
}
|
|
23110
|
+
.align-items-stretch--xl {
|
|
23111
|
+
align-items: stretch;
|
|
23112
|
+
}
|
|
23113
|
+
}
|
|
23114
|
+
|
|
23115
|
+
.align-self-start {
|
|
23116
|
+
align-self: flex-start;
|
|
23117
|
+
}
|
|
23118
|
+
|
|
23119
|
+
.align-self-end {
|
|
23120
|
+
align-self: flex-end;
|
|
23121
|
+
}
|
|
23122
|
+
|
|
23123
|
+
.align-self-center {
|
|
23124
|
+
align-self: center;
|
|
23125
|
+
}
|
|
23126
|
+
|
|
23127
|
+
.align-self-stretch {
|
|
23128
|
+
align-self: stretch;
|
|
23129
|
+
}
|
|
23130
|
+
|
|
23131
|
+
.align-self-baseline {
|
|
23132
|
+
align-self: baseline;
|
|
23133
|
+
}
|
|
23134
|
+
|
|
23135
|
+
@media (min-width: 576px) {
|
|
23136
|
+
.align-self-start--sm {
|
|
23137
|
+
align-self: flex-start;
|
|
23138
|
+
}
|
|
23139
|
+
.align-self-end--sm {
|
|
23140
|
+
align-self: flex-end;
|
|
23141
|
+
}
|
|
23142
|
+
.align-self-center--sm {
|
|
23143
|
+
align-self: center;
|
|
23144
|
+
}
|
|
23145
|
+
.align-self-stretch--sm {
|
|
23146
|
+
align-self: stretch;
|
|
23147
|
+
}
|
|
23148
|
+
.align-self-baseline--sm {
|
|
23149
|
+
align-self: baseline;
|
|
23150
|
+
}
|
|
23151
|
+
}
|
|
23152
|
+
|
|
23153
|
+
@media (min-width: 768px) {
|
|
23154
|
+
.align-self-start--md {
|
|
23155
|
+
align-self: flex-start;
|
|
23156
|
+
}
|
|
23157
|
+
.align-self-end--md {
|
|
23158
|
+
align-self: flex-end;
|
|
23159
|
+
}
|
|
23160
|
+
.align-self-center--md {
|
|
23161
|
+
align-self: center;
|
|
23162
|
+
}
|
|
23163
|
+
.align-self-stretch--md {
|
|
23164
|
+
align-self: stretch;
|
|
23165
|
+
}
|
|
23166
|
+
.align-self-baseline--md {
|
|
23167
|
+
align-self: baseline;
|
|
23168
|
+
}
|
|
23169
|
+
}
|
|
23170
|
+
|
|
23171
|
+
@media (min-width: 992px) {
|
|
23172
|
+
.align-self-start--lg {
|
|
23173
|
+
align-self: flex-start;
|
|
23174
|
+
}
|
|
23175
|
+
.align-self-end--lg {
|
|
23176
|
+
align-self: flex-end;
|
|
23177
|
+
}
|
|
23178
|
+
.align-self-center--lg {
|
|
23179
|
+
align-self: center;
|
|
23180
|
+
}
|
|
23181
|
+
.align-self-stretch--lg {
|
|
23182
|
+
align-self: stretch;
|
|
23183
|
+
}
|
|
23184
|
+
.align-self-baseline--lg {
|
|
23185
|
+
align-self: baseline;
|
|
23186
|
+
}
|
|
23187
|
+
}
|
|
23188
|
+
|
|
23189
|
+
@media (min-width: 1200px) {
|
|
23190
|
+
.align-self-start--xl {
|
|
23191
|
+
align-self: flex-start;
|
|
23192
|
+
}
|
|
23193
|
+
.align-self-end--xl {
|
|
23194
|
+
align-self: flex-end;
|
|
23195
|
+
}
|
|
23196
|
+
.align-self-center--xl {
|
|
23197
|
+
align-self: center;
|
|
23198
|
+
}
|
|
23199
|
+
.align-self-stretch--xl {
|
|
23200
|
+
align-self: stretch;
|
|
23201
|
+
}
|
|
23202
|
+
.align-self-baseline--xl {
|
|
23203
|
+
align-self: baseline;
|
|
23204
|
+
}
|
|
23205
|
+
}
|
|
23206
|
+
|
|
23207
|
+
.rounded-sm {
|
|
23208
|
+
border-radius: 2px;
|
|
23209
|
+
}
|
|
23210
|
+
|
|
23211
|
+
.rounded {
|
|
23212
|
+
border-radius: 10px;
|
|
23213
|
+
border-radius: var(--radius-small);
|
|
23214
|
+
}
|
|
23215
|
+
|
|
23216
|
+
.rounded-full {
|
|
23217
|
+
border-radius: 9999px;
|
|
23218
|
+
border-radius: var(--radius-full);
|
|
23219
|
+
}
|
|
23220
|
+
|
|
23221
|
+
.text-primary {
|
|
23222
|
+
color: #37517e !important;
|
|
23223
|
+
color: var(--color-content-primary) !important;
|
|
23224
|
+
/* @DEPRECATED: .bg-primary use .bg-elevated or ThemeProvider with theme="forest-green" instead */
|
|
23225
|
+
}
|
|
23226
|
+
|
|
23227
|
+
.bg-primary .text-primary {
|
|
23228
|
+
color: #ffffff !important;
|
|
23229
|
+
}
|
|
23230
|
+
|
|
23231
|
+
.text-secondary {
|
|
23232
|
+
color: #5d7079 !important;
|
|
23233
|
+
color: var(--color-content-secondary) !important;
|
|
23234
|
+
}
|
|
23235
|
+
|
|
23236
|
+
.text-muted {
|
|
23237
|
+
color: #768e9c !important;
|
|
23238
|
+
color: var(--color-content-tertiary) !important;
|
|
23239
|
+
}
|
|
23240
|
+
|
|
23241
|
+
.text-accent,
|
|
23242
|
+
.text-info {
|
|
23243
|
+
color: var(--color-interactive-primary) !important;
|
|
23244
|
+
/* @DEPRECATED: .bg-primary use .bg-elevated or ThemeProvider with theme="forest-green" instead */
|
|
23245
|
+
}
|
|
23246
|
+
|
|
23247
|
+
.bg-primary .text-accent,
|
|
23248
|
+
.bg-primary .text-info {
|
|
23249
|
+
color: #00b9ff !important;
|
|
23250
|
+
}
|
|
23251
|
+
|
|
23252
|
+
.text-negative,
|
|
23253
|
+
.text-danger {
|
|
23254
|
+
color: var(--color-sentiment-negative) !important;
|
|
23255
|
+
/* @DEPRECATED: .bg-primary use .bg-elevated or ThemeProvider with theme="forest-green" instead */
|
|
23256
|
+
}
|
|
23257
|
+
|
|
23258
|
+
.bg-primary .text-negative,
|
|
23259
|
+
.bg-primary .text-danger {
|
|
23260
|
+
color: #ffa6a9 !important;
|
|
23261
|
+
}
|
|
23262
|
+
|
|
23263
|
+
.text-positive,
|
|
23264
|
+
.text-success {
|
|
23265
|
+
color: var(--color-sentiment-positive) !important;
|
|
23266
|
+
/* @DEPRECATED: .bg-primary use .bg-elevated or ThemeProvider with theme="forest-green" instead */
|
|
23267
|
+
}
|
|
23268
|
+
|
|
23269
|
+
.bg-primary .text-positive,
|
|
23270
|
+
.bg-primary .text-success {
|
|
23271
|
+
color: #6fd698 !important;
|
|
23272
|
+
}
|
|
23273
|
+
|
|
23274
|
+
/**
|
|
23275
|
+
* @deprecated This makes text inaccessible. Use background color in combination with `.text-primary` instead.
|
|
23276
|
+
*/
|
|
23277
|
+
|
|
23278
|
+
.text-warning {
|
|
23279
|
+
color: var(--color-sentiment-warning) !important;
|
|
23280
|
+
/* @DEPRECATED: .bg-primary use .bg-elevated or ThemeProvider with theme="forest-green" instead */
|
|
23281
|
+
}
|
|
23282
|
+
|
|
23283
|
+
.bg-primary .text-warning {
|
|
23284
|
+
color: #ffd184 !important;
|
|
23285
|
+
}
|
|
23286
|
+
|
|
23287
|
+
/**
|
|
23288
|
+
* @deprecated Navy colors are obsolete.
|
|
23289
|
+
*/
|
|
23290
|
+
|
|
23291
|
+
.text-inverse {
|
|
23292
|
+
color: #ffffff !important;
|
|
23293
|
+
}
|
|
23294
|
+
|
|
23295
|
+
a.text-inverse:hover,
|
|
23296
|
+
a.text-inverse:focus {
|
|
23297
|
+
color: #c9cbce !important;
|
|
23298
|
+
}
|
|
23299
|
+
|
|
23300
|
+
a.text-inverse:hover,
|
|
23301
|
+
a.text-inverse:focus {
|
|
23302
|
+
color: #c9cbce !important;
|
|
23303
|
+
}
|
|
23304
|
+
|
|
23305
|
+
.clickable {
|
|
23306
|
+
cursor: pointer;
|
|
23307
|
+
}
|
|
23308
|
+
|
|
23309
|
+
.d-block,
|
|
23310
|
+
.show {
|
|
23311
|
+
display: block !important;
|
|
23312
|
+
}
|
|
23313
|
+
|
|
23314
|
+
.d-inline-block {
|
|
23315
|
+
display: inline-block !important;
|
|
23316
|
+
}
|
|
23317
|
+
|
|
23318
|
+
.d-inline {
|
|
23319
|
+
display: inline;
|
|
23320
|
+
}
|
|
23321
|
+
|
|
23322
|
+
.d-flex {
|
|
23323
|
+
display: flex;
|
|
23324
|
+
}
|
|
23325
|
+
|
|
23326
|
+
.d-inline-flex {
|
|
23327
|
+
display: inline-flex;
|
|
23328
|
+
}
|
|
23329
|
+
|
|
23330
|
+
.hidden,
|
|
23331
|
+
.hide,
|
|
23332
|
+
.visible-xs,
|
|
23333
|
+
.visible-xs-block,
|
|
23334
|
+
.visible-xs-inline-block,
|
|
23335
|
+
.visible-xs-inline,
|
|
23336
|
+
.visible-sm,
|
|
23337
|
+
.visible-sm-block,
|
|
23338
|
+
.visible-sm-inline-block,
|
|
23339
|
+
.visible-sm-inline,
|
|
23340
|
+
.visible-md,
|
|
23341
|
+
.visible-md-block,
|
|
23342
|
+
.visible-md-inline-block,
|
|
23343
|
+
.visible-md-inline,
|
|
23344
|
+
.visible-lg,
|
|
23345
|
+
.visible-lg-block,
|
|
23346
|
+
.visible-lg-inline-block,
|
|
23347
|
+
.visible-lg-inline,
|
|
23348
|
+
.visible-xl,
|
|
23349
|
+
.visible-xl-block,
|
|
23350
|
+
.visible-xl-inline-block,
|
|
23351
|
+
.visible-xl-inline {
|
|
23352
|
+
display: none !important;
|
|
23353
|
+
}
|
|
23354
|
+
|
|
23355
|
+
@media (max-width: 575px) {
|
|
23356
|
+
.hidden-xs {
|
|
23357
|
+
display: none !important;
|
|
23358
|
+
}
|
|
23359
|
+
.visible-xs,
|
|
23360
|
+
.visible-xs-block {
|
|
23361
|
+
display: block !important;
|
|
23362
|
+
}
|
|
23363
|
+
.visible-xs-inline-block {
|
|
23364
|
+
display: inline-block !important;
|
|
23365
|
+
}
|
|
23366
|
+
.visible-xs-inline {
|
|
23367
|
+
display: inline !important;
|
|
23368
|
+
}
|
|
23369
|
+
}
|
|
23370
|
+
|
|
23371
|
+
@media (min-width: 576px) {
|
|
23372
|
+
.d-flex--sm {
|
|
23373
|
+
display: flex;
|
|
23374
|
+
}
|
|
23375
|
+
.d-inline-flex--sm {
|
|
23376
|
+
display: inline-flex;
|
|
23377
|
+
}
|
|
23378
|
+
}
|
|
23379
|
+
|
|
23380
|
+
@media (min-width: 576px) and (max-width: 767px) {
|
|
23381
|
+
.hidden-sm {
|
|
23382
|
+
display: none !important;
|
|
23383
|
+
}
|
|
23384
|
+
.visible-sm,
|
|
23385
|
+
.visible-sm-block {
|
|
23386
|
+
display: block !important;
|
|
23387
|
+
}
|
|
23388
|
+
.visible-sm-inline-block {
|
|
23389
|
+
display: inline-block !important;
|
|
23390
|
+
}
|
|
23391
|
+
.visible-sm-inline {
|
|
23392
|
+
display: inline !important;
|
|
23393
|
+
}
|
|
23394
|
+
}
|
|
23395
|
+
|
|
23396
|
+
@media (min-width: 768px) {
|
|
23397
|
+
.d-flex--md {
|
|
23398
|
+
display: flex;
|
|
23399
|
+
}
|
|
23400
|
+
.d-inline-flex--md {
|
|
23401
|
+
display: inline-flex;
|
|
23402
|
+
}
|
|
23403
|
+
}
|
|
23404
|
+
|
|
23405
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
23406
|
+
.hidden-md {
|
|
23407
|
+
display: none !important;
|
|
23408
|
+
}
|
|
23409
|
+
.visible-md,
|
|
23410
|
+
.visible-md-block {
|
|
23411
|
+
display: block !important;
|
|
23412
|
+
}
|
|
23413
|
+
.visible-md-inline-block {
|
|
23414
|
+
display: inline-block !important;
|
|
23415
|
+
}
|
|
23416
|
+
.visible-md-inline {
|
|
23417
|
+
display: inline !important;
|
|
23418
|
+
}
|
|
23419
|
+
}
|
|
23420
|
+
|
|
23421
|
+
@media (min-width: 992px) {
|
|
23422
|
+
.d-flex--lg {
|
|
23423
|
+
display: flex;
|
|
23424
|
+
}
|
|
23425
|
+
.d-inline-flex--lg {
|
|
23426
|
+
display: inline-flex;
|
|
23427
|
+
}
|
|
23428
|
+
}
|
|
23429
|
+
|
|
23430
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
|
23431
|
+
.hidden-lg {
|
|
23432
|
+
display: none !important;
|
|
23433
|
+
}
|
|
23434
|
+
.visible-lg,
|
|
23435
|
+
.visible-lg-block {
|
|
23436
|
+
display: block !important;
|
|
23437
|
+
}
|
|
23438
|
+
.visible-lg-inline-block {
|
|
23439
|
+
display: inline-block !important;
|
|
23440
|
+
}
|
|
23441
|
+
.visible-lg-inline {
|
|
23442
|
+
display: inline !important;
|
|
23443
|
+
}
|
|
23444
|
+
}
|
|
23445
|
+
|
|
23446
|
+
@media (min-width: 1200px) {
|
|
23447
|
+
.d-flex--xl {
|
|
23448
|
+
display: flex;
|
|
23449
|
+
}
|
|
23450
|
+
.d-inline-flex--xl {
|
|
23451
|
+
display: inline-flex;
|
|
23452
|
+
}
|
|
23453
|
+
.hidden-xl {
|
|
23454
|
+
display: none !important;
|
|
23455
|
+
}
|
|
23456
|
+
.visible-xl,
|
|
23457
|
+
.visible-xl-block {
|
|
23458
|
+
display: block !important;
|
|
23459
|
+
}
|
|
23460
|
+
.visible-xl-inline-block {
|
|
23461
|
+
display: inline-block !important;
|
|
23462
|
+
}
|
|
23463
|
+
.visible-xl-inline {
|
|
23464
|
+
display: inline !important;
|
|
23465
|
+
}
|
|
23466
|
+
}
|
|
23467
|
+
|
|
23468
|
+
.flex-row {
|
|
23469
|
+
flex-direction: row;
|
|
23470
|
+
}
|
|
23471
|
+
|
|
23472
|
+
.flex-column {
|
|
23473
|
+
flex-direction: column;
|
|
23474
|
+
}
|
|
23475
|
+
|
|
23476
|
+
@media (min-width: 576px) {
|
|
23477
|
+
.flex-row--sm {
|
|
23478
|
+
flex-direction: row;
|
|
23479
|
+
}
|
|
23480
|
+
.flex-column--sm {
|
|
23481
|
+
flex-direction: column;
|
|
23482
|
+
}
|
|
23483
|
+
}
|
|
23484
|
+
|
|
23485
|
+
@media (min-width: 768px) {
|
|
23486
|
+
.flex-row--md {
|
|
23487
|
+
flex-direction: row;
|
|
23488
|
+
}
|
|
23489
|
+
.flex-column--md {
|
|
23490
|
+
flex-direction: column;
|
|
23491
|
+
}
|
|
23492
|
+
}
|
|
23493
|
+
|
|
23494
|
+
@media (min-width: 992px) {
|
|
23495
|
+
.flex-row--lg {
|
|
23496
|
+
flex-direction: row;
|
|
23497
|
+
}
|
|
23498
|
+
.flex-column--lg {
|
|
23499
|
+
flex-direction: column;
|
|
23500
|
+
}
|
|
23501
|
+
}
|
|
23502
|
+
|
|
23503
|
+
@media (min-width: 1200px) {
|
|
23504
|
+
.flex-row--xl {
|
|
23505
|
+
flex-direction: row;
|
|
23506
|
+
}
|
|
23507
|
+
.flex-column--xl {
|
|
23508
|
+
flex-direction: column;
|
|
23509
|
+
}
|
|
23510
|
+
}
|
|
23511
|
+
|
|
23512
|
+
.flex-grow-1 {
|
|
23513
|
+
flex-grow: 1;
|
|
23514
|
+
}
|
|
23515
|
+
|
|
23516
|
+
@media (min-width: 576px) {
|
|
23517
|
+
.flex-grow-1--sm {
|
|
23518
|
+
flex-grow: 1;
|
|
23519
|
+
}
|
|
23520
|
+
}
|
|
23521
|
+
|
|
23522
|
+
@media (min-width: 768px) {
|
|
23523
|
+
.flex-grow-1--md {
|
|
23524
|
+
flex-grow: 1;
|
|
23525
|
+
}
|
|
23526
|
+
}
|
|
23527
|
+
|
|
23528
|
+
@media (min-width: 992px) {
|
|
23529
|
+
.flex-grow-1--lg {
|
|
23530
|
+
flex-grow: 1;
|
|
23531
|
+
}
|
|
23532
|
+
}
|
|
23533
|
+
|
|
23534
|
+
@media (min-width: 1200px) {
|
|
23535
|
+
.flex-grow-1--xl {
|
|
23536
|
+
flex-grow: 1;
|
|
23537
|
+
}
|
|
23538
|
+
}
|
|
23539
|
+
|
|
23540
|
+
.flex-wrap {
|
|
23541
|
+
flex-wrap: wrap;
|
|
23542
|
+
}
|
|
23543
|
+
|
|
23544
|
+
.flex-nowrap {
|
|
23545
|
+
flex-wrap: nowrap;
|
|
23546
|
+
}
|
|
23547
|
+
|
|
23548
|
+
@media (min-width: 576px) {
|
|
23549
|
+
.flex-wrap--sm {
|
|
23550
|
+
flex-wrap: wrap;
|
|
23551
|
+
}
|
|
23552
|
+
.flex-nowrap--sm {
|
|
23553
|
+
flex-wrap: nowrap;
|
|
23554
|
+
}
|
|
23555
|
+
}
|
|
23556
|
+
|
|
23557
|
+
@media (min-width: 768px) {
|
|
23558
|
+
.flex-wrap--md {
|
|
23559
|
+
flex-wrap: wrap;
|
|
23560
|
+
}
|
|
23561
|
+
.flex-nowrap--md {
|
|
23562
|
+
flex-wrap: nowrap;
|
|
23563
|
+
}
|
|
23564
|
+
}
|
|
23565
|
+
|
|
23566
|
+
@media (min-width: 992px) {
|
|
23567
|
+
.flex-wrap--lg {
|
|
23568
|
+
flex-wrap: wrap;
|
|
23569
|
+
}
|
|
23570
|
+
.flex-nowrap--lg {
|
|
23571
|
+
flex-wrap: nowrap;
|
|
23572
|
+
}
|
|
23573
|
+
}
|
|
23574
|
+
|
|
23575
|
+
@media (min-width: 1200px) {
|
|
23576
|
+
.flex-wrap--xl {
|
|
23577
|
+
flex-wrap: wrap;
|
|
23578
|
+
}
|
|
23579
|
+
.flex-nowrap--xl {
|
|
23580
|
+
flex-wrap: nowrap;
|
|
23581
|
+
}
|
|
23582
|
+
}
|
|
23583
|
+
|
|
23584
|
+
.pull-left,
|
|
23585
|
+
.pull-xs-left {
|
|
23586
|
+
float: inline-start !important;
|
|
23587
|
+
}
|
|
23588
|
+
|
|
23589
|
+
.pull-right,
|
|
23590
|
+
.pull-xs-right {
|
|
23591
|
+
float: inline-end !important;
|
|
23592
|
+
}
|
|
23593
|
+
|
|
23594
|
+
.pull-right-single-direction {
|
|
23595
|
+
float: right !important;
|
|
23596
|
+
}
|
|
23597
|
+
|
|
23598
|
+
.pull-left-single-direction {
|
|
23599
|
+
float: left !important;
|
|
23600
|
+
}
|
|
23601
|
+
|
|
23602
|
+
.pull-xs-none {
|
|
23603
|
+
float: none !important;
|
|
23604
|
+
}
|
|
23605
|
+
|
|
23606
|
+
@media (min-width: 576px) {
|
|
23607
|
+
.pull-sm-left {
|
|
23608
|
+
float: inline-start !important;
|
|
23609
|
+
}
|
|
23610
|
+
.pull-sm-right {
|
|
23611
|
+
float: inline-end !important;
|
|
23612
|
+
}
|
|
23613
|
+
.pull-sm-none {
|
|
23614
|
+
float: none !important;
|
|
23615
|
+
}
|
|
23616
|
+
}
|
|
23617
|
+
|
|
23618
|
+
@media (min-width: 768px) {
|
|
23619
|
+
.pull-md-left {
|
|
23620
|
+
float: inline-start !important;
|
|
23621
|
+
}
|
|
23622
|
+
.pull-md-right {
|
|
23623
|
+
float: inline-end !important;
|
|
23624
|
+
}
|
|
23625
|
+
.pull-md-none {
|
|
23626
|
+
float: none !important;
|
|
23627
|
+
}
|
|
23628
|
+
}
|
|
23629
|
+
|
|
23630
|
+
@media (min-width: 992px) {
|
|
23631
|
+
.pull-lg-left {
|
|
23632
|
+
float: inline-start !important;
|
|
23633
|
+
}
|
|
23634
|
+
.pull-lg-right {
|
|
23635
|
+
float: inline-end !important;
|
|
23636
|
+
}
|
|
23637
|
+
.pull-lg-none {
|
|
23638
|
+
float: none !important;
|
|
23639
|
+
}
|
|
23640
|
+
}
|
|
23641
|
+
|
|
23642
|
+
@media (min-width: 1200px) {
|
|
23643
|
+
.pull-xl-left {
|
|
23644
|
+
float: inline-start !important;
|
|
23645
|
+
}
|
|
23646
|
+
.pull-xl-right {
|
|
23647
|
+
float: inline-end !important;
|
|
23648
|
+
}
|
|
23649
|
+
.pull-xl-none {
|
|
23650
|
+
float: none !important;
|
|
23651
|
+
}
|
|
23652
|
+
}
|
|
22720
23653
|
|
|
22721
23654
|
.font-weight-normal {
|
|
22722
23655
|
font-weight: 400 !important;
|
|
@@ -22738,6 +23671,98 @@ a.text-inverse:focus {
|
|
|
22738
23671
|
row-gap: var(--size-8);
|
|
22739
23672
|
}
|
|
22740
23673
|
|
|
23674
|
+
.justify-content-start {
|
|
23675
|
+
justify-content: flex-start;
|
|
23676
|
+
}
|
|
23677
|
+
|
|
23678
|
+
.justify-content-end {
|
|
23679
|
+
justify-content: flex-end;
|
|
23680
|
+
}
|
|
23681
|
+
|
|
23682
|
+
.justify-content-center {
|
|
23683
|
+
justify-content: center;
|
|
23684
|
+
}
|
|
23685
|
+
|
|
23686
|
+
.justify-content-between {
|
|
23687
|
+
justify-content: space-between;
|
|
23688
|
+
}
|
|
23689
|
+
|
|
23690
|
+
.justify-content-around {
|
|
23691
|
+
justify-content: space-around;
|
|
23692
|
+
}
|
|
23693
|
+
|
|
23694
|
+
@media (min-width: 576px) {
|
|
23695
|
+
.justify-content-start--sm {
|
|
23696
|
+
justify-content: flex-start;
|
|
23697
|
+
}
|
|
23698
|
+
.justify-content-end--sm {
|
|
23699
|
+
justify-content: flex-end;
|
|
23700
|
+
}
|
|
23701
|
+
.justify-content-center--sm {
|
|
23702
|
+
justify-content: center;
|
|
23703
|
+
}
|
|
23704
|
+
.justify-content-between--sm {
|
|
23705
|
+
justify-content: space-between;
|
|
23706
|
+
}
|
|
23707
|
+
.justify-content-around--sm {
|
|
23708
|
+
justify-content: space-around;
|
|
23709
|
+
}
|
|
23710
|
+
}
|
|
23711
|
+
|
|
23712
|
+
@media (min-width: 768px) {
|
|
23713
|
+
.justify-content-start--md {
|
|
23714
|
+
justify-content: flex-start;
|
|
23715
|
+
}
|
|
23716
|
+
.justify-content-end--md {
|
|
23717
|
+
justify-content: flex-end;
|
|
23718
|
+
}
|
|
23719
|
+
.justify-content-center--md {
|
|
23720
|
+
justify-content: center;
|
|
23721
|
+
}
|
|
23722
|
+
.justify-content-between--md {
|
|
23723
|
+
justify-content: space-between;
|
|
23724
|
+
}
|
|
23725
|
+
.justify-content-around--md {
|
|
23726
|
+
justify-content: space-around;
|
|
23727
|
+
}
|
|
23728
|
+
}
|
|
23729
|
+
|
|
23730
|
+
@media (min-width: 992px) {
|
|
23731
|
+
.justify-content-start--lg {
|
|
23732
|
+
justify-content: flex-start;
|
|
23733
|
+
}
|
|
23734
|
+
.justify-content-end--lg {
|
|
23735
|
+
justify-content: flex-end;
|
|
23736
|
+
}
|
|
23737
|
+
.justify-content-center--lg {
|
|
23738
|
+
justify-content: center;
|
|
23739
|
+
}
|
|
23740
|
+
.justify-content-between--lg {
|
|
23741
|
+
justify-content: space-between;
|
|
23742
|
+
}
|
|
23743
|
+
.justify-content-around--lg {
|
|
23744
|
+
justify-content: space-around;
|
|
23745
|
+
}
|
|
23746
|
+
}
|
|
23747
|
+
|
|
23748
|
+
@media (min-width: 1200px) {
|
|
23749
|
+
.justify-content-start--xl {
|
|
23750
|
+
justify-content: flex-start;
|
|
23751
|
+
}
|
|
23752
|
+
.justify-content-end--xl {
|
|
23753
|
+
justify-content: flex-end;
|
|
23754
|
+
}
|
|
23755
|
+
.justify-content-center--xl {
|
|
23756
|
+
justify-content: center;
|
|
23757
|
+
}
|
|
23758
|
+
.justify-content-between--xl {
|
|
23759
|
+
justify-content: space-between;
|
|
23760
|
+
}
|
|
23761
|
+
.justify-content-around--xl {
|
|
23762
|
+
justify-content: space-around;
|
|
23763
|
+
}
|
|
23764
|
+
}
|
|
23765
|
+
|
|
22741
23766
|
.m-a-0 {
|
|
22742
23767
|
margin: 0px !important;
|
|
22743
23768
|
}
|
|
@@ -22980,6 +24005,91 @@ a.text-inverse:focus {
|
|
|
22980
24005
|
max-width: 600px;
|
|
22981
24006
|
}
|
|
22982
24007
|
|
|
24008
|
+
.order-1 {
|
|
24009
|
+
order: 1;
|
|
24010
|
+
}
|
|
24011
|
+
|
|
24012
|
+
.order-2 {
|
|
24013
|
+
order: 2;
|
|
24014
|
+
}
|
|
24015
|
+
|
|
24016
|
+
.order-3 {
|
|
24017
|
+
order: 3;
|
|
24018
|
+
}
|
|
24019
|
+
|
|
24020
|
+
.order-0 {
|
|
24021
|
+
order: 0;
|
|
24022
|
+
}
|
|
24023
|
+
|
|
24024
|
+
@media (min-width: 576px) {
|
|
24025
|
+
.order-1--sm {
|
|
24026
|
+
order: 1;
|
|
24027
|
+
}
|
|
24028
|
+
.order-2--sm {
|
|
24029
|
+
order: 2;
|
|
24030
|
+
}
|
|
24031
|
+
.order-3--sm {
|
|
24032
|
+
order: 3;
|
|
24033
|
+
}
|
|
24034
|
+
.order-0--sm {
|
|
24035
|
+
order: 0;
|
|
24036
|
+
}
|
|
24037
|
+
}
|
|
24038
|
+
|
|
24039
|
+
@media (min-width: 768px) {
|
|
24040
|
+
.order-1--md {
|
|
24041
|
+
order: 1;
|
|
24042
|
+
}
|
|
24043
|
+
.order-2--md {
|
|
24044
|
+
order: 2;
|
|
24045
|
+
}
|
|
24046
|
+
.order-3--md {
|
|
24047
|
+
order: 3;
|
|
24048
|
+
}
|
|
24049
|
+
.order-0--md {
|
|
24050
|
+
order: 0;
|
|
24051
|
+
}
|
|
24052
|
+
}
|
|
24053
|
+
|
|
24054
|
+
@media (min-width: 992px) {
|
|
24055
|
+
.order-1--lg {
|
|
24056
|
+
order: 1;
|
|
24057
|
+
}
|
|
24058
|
+
.order-2--lg {
|
|
24059
|
+
order: 2;
|
|
24060
|
+
}
|
|
24061
|
+
.order-3--lg {
|
|
24062
|
+
order: 3;
|
|
24063
|
+
}
|
|
24064
|
+
.order-0--lg {
|
|
24065
|
+
order: 0;
|
|
24066
|
+
}
|
|
24067
|
+
}
|
|
24068
|
+
|
|
24069
|
+
@media (min-width: 1200px) {
|
|
24070
|
+
.order-1--xl {
|
|
24071
|
+
order: 1;
|
|
24072
|
+
}
|
|
24073
|
+
.order-2--xl {
|
|
24074
|
+
order: 2;
|
|
24075
|
+
}
|
|
24076
|
+
.order-3--xl {
|
|
24077
|
+
order: 3;
|
|
24078
|
+
}
|
|
24079
|
+
.order-0--xl {
|
|
24080
|
+
order: 0;
|
|
24081
|
+
}
|
|
24082
|
+
}
|
|
24083
|
+
|
|
24084
|
+
.outline-none {
|
|
24085
|
+
outline: none;
|
|
24086
|
+
/*
|
|
24087
|
+
TODO: Support Windows High Contrast mode
|
|
24088
|
+
outline: 2px solid transparent;
|
|
24089
|
+
outline-offset: 2px;
|
|
24090
|
+
*/
|
|
24091
|
+
}
|
|
24092
|
+
|
|
22983
24093
|
.text-word-break {
|
|
22984
24094
|
word-wrap: break-word;
|
|
22985
24095
|
}
|
|
@@ -23472,88 +24582,95 @@ a.text-inverse:focus {
|
|
|
23472
24582
|
clear: both;
|
|
23473
24583
|
}
|
|
23474
24584
|
|
|
23475
|
-
.
|
|
23476
|
-
|
|
23477
|
-
|
|
23478
|
-
|
|
23479
|
-
|
|
23480
|
-
|
|
23481
|
-
|
|
23482
|
-
.
|
|
23483
|
-
.
|
|
23484
|
-
|
|
23485
|
-
|
|
23486
|
-
|
|
23487
|
-
|
|
23488
|
-
|
|
23489
|
-
|
|
23490
|
-
|
|
23491
|
-
|
|
23492
|
-
|
|
23493
|
-
|
|
23494
|
-
|
|
24585
|
+
.clearfix::before,
|
|
24586
|
+
.clearfix::after,
|
|
24587
|
+
.btn-group-vertical > .btn-group::before,
|
|
24588
|
+
.btn-group-vertical > .btn-group::after,
|
|
24589
|
+
.form-horizontal .form-group::before,
|
|
24590
|
+
.form-horizontal .form-group::after,
|
|
24591
|
+
.container::before,
|
|
24592
|
+
.container::after,
|
|
24593
|
+
.container-fluid::before,
|
|
24594
|
+
.container-fluid::after,
|
|
24595
|
+
.row::before,
|
|
24596
|
+
.row::after,
|
|
24597
|
+
.nav::before,
|
|
24598
|
+
.nav::after,
|
|
24599
|
+
.navbar::before,
|
|
24600
|
+
.navbar::after,
|
|
24601
|
+
.navbar-header::before,
|
|
24602
|
+
.navbar-header::after,
|
|
24603
|
+
.navbar-collapse::before,
|
|
24604
|
+
.navbar-collapse::after,
|
|
24605
|
+
.modal-footer::before,
|
|
24606
|
+
.modal-footer::after,
|
|
24607
|
+
.panel-body::before,
|
|
24608
|
+
.panel-body::after {
|
|
24609
|
+
content: " ";
|
|
24610
|
+
display: table;
|
|
23495
24611
|
}
|
|
23496
24612
|
|
|
23497
|
-
|
|
23498
|
-
|
|
23499
|
-
|
|
23500
|
-
|
|
23501
|
-
|
|
23502
|
-
|
|
23503
|
-
|
|
23504
|
-
|
|
23505
|
-
|
|
23506
|
-
|
|
23507
|
-
|
|
23508
|
-
|
|
23509
|
-
|
|
23510
|
-
}
|
|
24613
|
+
.clearfix::after,
|
|
24614
|
+
.btn-group-vertical > .btn-group::after,
|
|
24615
|
+
.form-horizontal .form-group::after,
|
|
24616
|
+
.container::after,
|
|
24617
|
+
.container-fluid::after,
|
|
24618
|
+
.row::after,
|
|
24619
|
+
.nav::after,
|
|
24620
|
+
.navbar::after,
|
|
24621
|
+
.navbar-header::after,
|
|
24622
|
+
.navbar-collapse::after,
|
|
24623
|
+
.modal-footer::after,
|
|
24624
|
+
.panel-body::after {
|
|
24625
|
+
clear: both;
|
|
23511
24626
|
}
|
|
23512
24627
|
|
|
23513
|
-
|
|
23514
|
-
|
|
23515
|
-
|
|
23516
|
-
|
|
23517
|
-
|
|
23518
|
-
|
|
23519
|
-
|
|
23520
|
-
|
|
23521
|
-
|
|
23522
|
-
|
|
23523
|
-
|
|
23524
|
-
|
|
23525
|
-
|
|
23526
|
-
|
|
24628
|
+
.clearfix::before,
|
|
24629
|
+
.clearfix::after,
|
|
24630
|
+
.btn-group-vertical > .btn-group::before,
|
|
24631
|
+
.btn-group-vertical > .btn-group::after,
|
|
24632
|
+
.form-horizontal .form-group::before,
|
|
24633
|
+
.form-horizontal .form-group::after,
|
|
24634
|
+
.container::before,
|
|
24635
|
+
.container::after,
|
|
24636
|
+
.container-fluid::before,
|
|
24637
|
+
.container-fluid::after,
|
|
24638
|
+
.row::before,
|
|
24639
|
+
.row::after,
|
|
24640
|
+
.nav::before,
|
|
24641
|
+
.nav::after,
|
|
24642
|
+
.navbar::before,
|
|
24643
|
+
.navbar::after,
|
|
24644
|
+
.navbar-header::before,
|
|
24645
|
+
.navbar-header::after,
|
|
24646
|
+
.navbar-collapse::before,
|
|
24647
|
+
.navbar-collapse::after,
|
|
24648
|
+
.modal-footer::before,
|
|
24649
|
+
.modal-footer::after,
|
|
24650
|
+
.panel-body::before,
|
|
24651
|
+
.panel-body::after {
|
|
24652
|
+
content: " ";
|
|
24653
|
+
display: table;
|
|
23527
24654
|
}
|
|
23528
24655
|
|
|
23529
|
-
|
|
23530
|
-
|
|
23531
|
-
|
|
23532
|
-
|
|
23533
|
-
|
|
23534
|
-
|
|
23535
|
-
|
|
23536
|
-
|
|
23537
|
-
|
|
23538
|
-
|
|
23539
|
-
|
|
23540
|
-
|
|
23541
|
-
|
|
23542
|
-
}
|
|
24656
|
+
.clearfix::after,
|
|
24657
|
+
.btn-group-vertical > .btn-group::after,
|
|
24658
|
+
.form-horizontal .form-group::after,
|
|
24659
|
+
.container::after,
|
|
24660
|
+
.container-fluid::after,
|
|
24661
|
+
.row::after,
|
|
24662
|
+
.nav::after,
|
|
24663
|
+
.navbar::after,
|
|
24664
|
+
.navbar-header::after,
|
|
24665
|
+
.navbar-collapse::after,
|
|
24666
|
+
.modal-footer::after,
|
|
24667
|
+
.panel-body::after {
|
|
24668
|
+
clear: both;
|
|
23543
24669
|
}
|
|
23544
24670
|
|
|
23545
|
-
|
|
23546
|
-
|
|
23547
|
-
|
|
23548
|
-
|
|
23549
|
-
|
|
23550
|
-
margin-bottom: var(--size-24);
|
|
23551
|
-
border-radius: 10px;
|
|
23552
|
-
border-radius: var(--radius-small);
|
|
23553
|
-
border: solid 1px rgba(0,0,0,0.10196);
|
|
23554
|
-
border: solid 1px var(--color-border-neutral);
|
|
23555
|
-
padding: 24px;
|
|
23556
|
-
padding: var(--size-24);
|
|
23557
|
-
box-shadow: none;
|
|
23558
|
-
}
|
|
24671
|
+
.text-hide {
|
|
24672
|
+
color: transparent;
|
|
24673
|
+
text-shadow: none;
|
|
24674
|
+
background-color: transparent;
|
|
24675
|
+
border: 0;
|
|
23559
24676
|
}
|