@clayui/css 3.44.2 → 3.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -69
- package/lib/css/atlas.css +457 -86
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +411 -68
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +204 -90
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/add-cell.svg +1 -1
- package/lib/images/icons/corner-radius.svg +12 -0
- package/lib/images/icons/export.svg +11 -0
- package/lib/images/icons/font-family.svg +10 -0
- package/lib/images/icons/font-size.svg +10 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/shadow.svg +9 -0
- package/package.json +2 -2
- package/src/images/icons/add-cell.svg +1 -1
- package/src/images/icons/corner-radius.svg +12 -0
- package/src/images/icons/export.svg +11 -0
- package/src/images/icons/font-family.svg +10 -0
- package/src/images/icons/font-size.svg +10 -0
- package/src/images/icons/shadow.svg +9 -0
- package/src/scss/_components.scss +1 -0
- package/src/scss/_variables.scss +2 -0
- package/src/scss/atlas/variables/_buttons.scss +3 -0
- package/src/scss/atlas/variables/_cards.scss +12 -0
- package/src/scss/atlas/variables/_forms.scss +2 -1
- package/src/scss/atlas/variables/_globals.scss +42 -13
- package/src/scss/atlas/variables/_list-group.scss +28 -12
- package/src/scss/cadmin/_variables.scss +1 -0
- package/src/scss/cadmin/components/_aspect-ratio.scss +25 -38
- package/src/scss/cadmin/components/_cards.scss +10 -120
- package/src/scss/cadmin/components/_custom-forms.scss +4 -0
- package/src/scss/cadmin/components/_empty-state.scss +36 -0
- package/src/scss/cadmin/components/_forms.scss +1 -1
- package/src/scss/cadmin/components/_links.scss +1 -14
- package/src/scss/cadmin/components/_navs.scss +8 -0
- package/src/scss/cadmin/components/_treeview.scss +191 -210
- package/src/scss/cadmin/components/_type.scss +27 -42
- package/src/scss/cadmin/components/_utilities-functional-important.scss +35 -15
- package/src/scss/cadmin/variables/_aspect-ratio.scss +26 -0
- package/src/scss/cadmin/variables/_cards.scss +164 -1
- package/src/scss/cadmin/variables/_custom-forms.scss +3 -0
- package/src/scss/cadmin/variables/_empty-state.scss +23 -0
- package/src/scss/cadmin/variables/_forms.scss +3 -2
- package/src/scss/cadmin/variables/_globals.scss +173 -11
- package/src/scss/cadmin/variables/_links.scss +14 -0
- package/src/scss/cadmin/variables/_list-group.scss +32 -16
- package/src/scss/cadmin/variables/_sidebar.scss +1 -1
- package/src/scss/cadmin/variables/_treeview.scss +38 -17
- package/src/scss/cadmin/variables/_utilities.scss +42 -0
- package/src/scss/components/_aspect-ratio.scss +25 -38
- package/src/scss/components/_cards.scss +28 -122
- package/src/scss/components/_empty-state.scss +30 -0
- package/src/scss/components/_forms.scss +1 -1
- package/src/scss/components/_links.scss +12 -8
- package/src/scss/components/_tables.scss +0 -8
- package/src/scss/components/_treeview.scss +367 -0
- package/src/scss/components/_type.scss +27 -41
- package/src/scss/components/_utilities-functional-important.scss +35 -15
- package/src/scss/functions/_lx-icons-generated.scss +10 -0
- package/src/scss/mixins/_buttons.scss +4 -0
- package/src/scss/mixins/_cards.scss +59 -25
- package/src/scss/mixins/_grid.scss +29 -0
- package/src/scss/mixins/_links.scss +22 -2
- package/src/scss/variables/_aspect-ratio.scss +26 -0
- package/src/scss/variables/_buttons.scss +6 -0
- package/src/scss/variables/_cards.scss +158 -4
- package/src/scss/variables/_empty-state.scss +23 -0
- package/src/scss/variables/_forms.scss +3 -2
- package/src/scss/variables/_globals.scss +172 -11
- package/src/scss/variables/_links.scss +38 -3
- package/src/scss/variables/_list-group.scss +22 -12
- package/src/scss/variables/_sidebar.scss +3 -3
- package/src/scss/variables/_tables.scss +14 -0
- package/src/scss/variables/_treeview.scss +242 -0
- package/src/scss/variables/_utilities.scss +42 -0
package/lib/css/atlas.css
CHANGED
|
@@ -325,26 +325,32 @@ h1,
|
|
|
325
325
|
.h1 {
|
|
326
326
|
font-size: 1.625rem;
|
|
327
327
|
}
|
|
328
|
+
|
|
328
329
|
h2,
|
|
329
330
|
.h2 {
|
|
330
331
|
font-size: 1.375rem;
|
|
331
332
|
}
|
|
333
|
+
|
|
332
334
|
h3,
|
|
333
335
|
.h3 {
|
|
334
336
|
font-size: 1.1875rem;
|
|
335
337
|
}
|
|
338
|
+
|
|
336
339
|
h4,
|
|
337
340
|
.h4 {
|
|
338
341
|
font-size: 1rem;
|
|
339
342
|
}
|
|
343
|
+
|
|
340
344
|
h5,
|
|
341
345
|
.h5 {
|
|
342
346
|
font-size: 0.875rem;
|
|
343
347
|
}
|
|
348
|
+
|
|
344
349
|
h6,
|
|
345
350
|
.h6 {
|
|
346
351
|
font-size: 0.8125rem;
|
|
347
352
|
}
|
|
353
|
+
|
|
348
354
|
.lead {
|
|
349
355
|
font-size: 1.25rem;
|
|
350
356
|
font-weight: 300;
|
|
@@ -1140,6 +1146,10 @@ button.collapse-icon .c-inner {
|
|
|
1140
1146
|
padding-bottom: calc(3 / 4 * 100%);
|
|
1141
1147
|
}
|
|
1142
1148
|
|
|
1149
|
+
.aspect-ratio-8-to-3 {
|
|
1150
|
+
padding-bottom: calc(3 / 8 * 100%);
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1143
1153
|
.aspect-ratio-8-to-5 {
|
|
1144
1154
|
padding-bottom: calc(5 / 8 * 100%);
|
|
1145
1155
|
}
|
|
@@ -1235,6 +1245,9 @@ button.collapse-icon .c-inner {
|
|
|
1235
1245
|
.btn .inline-item {
|
|
1236
1246
|
font-size: 1rem;
|
|
1237
1247
|
}
|
|
1248
|
+
.btn .inline-item .lexicon-icon {
|
|
1249
|
+
margin-top: 0;
|
|
1250
|
+
}
|
|
1238
1251
|
.btn .btn-section {
|
|
1239
1252
|
display: block;
|
|
1240
1253
|
font-size: 0.6875rem;
|
|
@@ -1294,6 +1307,10 @@ fieldset:disabled a.btn:active {
|
|
|
1294
1307
|
margin-right: -0.75rem;
|
|
1295
1308
|
margin-top: -0.4375rem;
|
|
1296
1309
|
}
|
|
1310
|
+
.form-group-sm .btn .lexicon-icon, .btn-group-sm > .btn .lexicon-icon,
|
|
1311
|
+
.btn-group-sm .btn-group > .btn .lexicon-icon, .btn-sm .lexicon-icon {
|
|
1312
|
+
font-size: 1rem;
|
|
1313
|
+
}
|
|
1297
1314
|
.form-group-sm .btn .btn-section, .btn-group-sm > .btn .btn-section,
|
|
1298
1315
|
.btn-group-sm .btn-group > .btn .btn-section, .btn-sm .btn-section {
|
|
1299
1316
|
font-size: 0.5625rem;
|
|
@@ -1360,6 +1377,9 @@ input[type=button].btn-block {
|
|
|
1360
1377
|
padding: 0;
|
|
1361
1378
|
width: 100%;
|
|
1362
1379
|
}
|
|
1380
|
+
.btn-monospaced .lexicon-icon {
|
|
1381
|
+
margin-top: 0;
|
|
1382
|
+
}
|
|
1363
1383
|
.btn-group-vertical > .btn-monospaced.btn-lg, .btn-group-lg .btn-monospaced, .btn-monospaced.btn-lg {
|
|
1364
1384
|
height: 3rem;
|
|
1365
1385
|
width: 3rem;
|
|
@@ -4537,6 +4557,20 @@ input[type=button].btn-block {
|
|
|
4537
4557
|
word-wrap: break-word;
|
|
4538
4558
|
}
|
|
4539
4559
|
|
|
4560
|
+
.c-empty-state-sm.c-empty-state-animation {
|
|
4561
|
+
margin: 2.5rem auto 2rem;
|
|
4562
|
+
max-width: 268px;
|
|
4563
|
+
}
|
|
4564
|
+
.c-empty-state-sm .c-empty-state-image {
|
|
4565
|
+
max-width: 120px;
|
|
4566
|
+
}
|
|
4567
|
+
.c-empty-state-sm .c-empty-state-title {
|
|
4568
|
+
font-size: 1rem;
|
|
4569
|
+
line-height: 1.5;
|
|
4570
|
+
}
|
|
4571
|
+
.c-empty-state-sm .c-empty-state-text {
|
|
4572
|
+
font-size: 0.875rem;
|
|
4573
|
+
}
|
|
4540
4574
|
.label {
|
|
4541
4575
|
border-color: #272833;
|
|
4542
4576
|
border-radius: 0.125rem;
|
|
@@ -5170,34 +5204,17 @@ input[type=button].btn-block {
|
|
|
5170
5204
|
.card-horizontal {
|
|
5171
5205
|
background-color: #fff;
|
|
5172
5206
|
border-color: rgba(0, 0, 0, 0.125);
|
|
5207
|
+
border-radius: 0.25rem;
|
|
5173
5208
|
border-style: solid;
|
|
5174
5209
|
border-width: 0px;
|
|
5175
|
-
border-radius: 0.25rem;
|
|
5176
5210
|
box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.6);
|
|
5177
5211
|
display: block;
|
|
5178
5212
|
margin-bottom: 1.5rem;
|
|
5179
5213
|
min-width: 0;
|
|
5180
5214
|
position: relative;
|
|
5215
|
+
overflow-wrap: break-word;
|
|
5181
5216
|
word-wrap: break-word;
|
|
5182
5217
|
}
|
|
5183
|
-
.card .autofit-col:first-child,
|
|
5184
|
-
.card-horizontal .autofit-col:first-child {
|
|
5185
|
-
border-bottom-left-radius: calc(
|
|
5186
|
-
0.25rem - 0px
|
|
5187
|
-
);
|
|
5188
|
-
border-top-left-radius: calc(
|
|
5189
|
-
0.25rem - 0px
|
|
5190
|
-
);
|
|
5191
|
-
}
|
|
5192
|
-
.card .autofit-col:last-child,
|
|
5193
|
-
.card-horizontal .autofit-col:last-child {
|
|
5194
|
-
border-bottom-right-radius: calc(
|
|
5195
|
-
0.25rem - 0px
|
|
5196
|
-
);
|
|
5197
|
-
border-top-right-radius: calc(
|
|
5198
|
-
0.25rem - 0px
|
|
5199
|
-
);
|
|
5200
|
-
}
|
|
5201
5218
|
.card .aspect-ratio .label,
|
|
5202
5219
|
.card-horizontal .aspect-ratio .label {
|
|
5203
5220
|
display: block;
|
|
@@ -5243,6 +5260,24 @@ input[type=button].btn-block {
|
|
|
5243
5260
|
margin-left: 0;
|
|
5244
5261
|
margin-right: 0;
|
|
5245
5262
|
}
|
|
5263
|
+
.card .autofit-col:first-child,
|
|
5264
|
+
.card-horizontal .autofit-col:first-child {
|
|
5265
|
+
border-bottom-left-radius: calc(
|
|
5266
|
+
0.25rem - 0px
|
|
5267
|
+
);
|
|
5268
|
+
border-top-left-radius: calc(
|
|
5269
|
+
0.25rem - 0px
|
|
5270
|
+
);
|
|
5271
|
+
}
|
|
5272
|
+
.card .autofit-col:last-child,
|
|
5273
|
+
.card-horizontal .autofit-col:last-child {
|
|
5274
|
+
border-bottom-right-radius: calc(
|
|
5275
|
+
0.25rem - 0px
|
|
5276
|
+
);
|
|
5277
|
+
border-top-right-radius: calc(
|
|
5278
|
+
0.25rem - 0px
|
|
5279
|
+
);
|
|
5280
|
+
}
|
|
5246
5281
|
.card > .list-group:first-child .list-group-item:first-child,
|
|
5247
5282
|
.card-horizontal > .list-group:first-child .list-group-item:first-child {
|
|
5248
5283
|
border-top-left-radius: 0.25rem;
|
|
@@ -5280,10 +5315,12 @@ input[type=button].btn-block {
|
|
|
5280
5315
|
margin-bottom: 0;
|
|
5281
5316
|
color: #272833;
|
|
5282
5317
|
}
|
|
5283
|
-
.card-title
|
|
5318
|
+
.card-title[href],
|
|
5319
|
+
.card-title [href] {
|
|
5284
5320
|
color: #272833;
|
|
5285
5321
|
}
|
|
5286
|
-
.card-title
|
|
5322
|
+
.card-title[href]:hover,
|
|
5323
|
+
.card-title [href]:hover {
|
|
5287
5324
|
color: #272833;
|
|
5288
5325
|
}
|
|
5289
5326
|
.card-subtitle {
|
|
@@ -5293,16 +5330,17 @@ input[type=button].btn-block {
|
|
|
5293
5330
|
margin-bottom: 0;
|
|
5294
5331
|
margin-top: 0;
|
|
5295
5332
|
}
|
|
5296
|
-
.card-subtitle
|
|
5333
|
+
.card-subtitle[href],
|
|
5334
|
+
.card-subtitle [href] {
|
|
5297
5335
|
color: #6b6c7e;
|
|
5298
5336
|
}
|
|
5299
|
-
.card-subtitle
|
|
5337
|
+
.card-subtitle[href]:hover,
|
|
5338
|
+
.card-subtitle [href]:hover {
|
|
5300
5339
|
color: #6b6c7e;
|
|
5301
5340
|
}
|
|
5302
5341
|
.card-text:last-child {
|
|
5303
5342
|
margin-bottom: 0;
|
|
5304
5343
|
}
|
|
5305
|
-
|
|
5306
5344
|
.card-link {
|
|
5307
5345
|
color: #6b6c7e;
|
|
5308
5346
|
font-size: 0.875rem;
|
|
@@ -5332,11 +5370,7 @@ input[type=button].btn-block {
|
|
|
5332
5370
|
padding: 0.75rem 1.25rem;
|
|
5333
5371
|
}
|
|
5334
5372
|
.card-header:first-child {
|
|
5335
|
-
border-radius: calc(
|
|
5336
|
-
0.25rem - 0px
|
|
5337
|
-
) calc(
|
|
5338
|
-
0.25rem - 0px
|
|
5339
|
-
) 0 0;
|
|
5373
|
+
border-radius: calc( 0.25rem - 0px ) calc( 0.25rem - 0px ) 0 0;
|
|
5340
5374
|
}
|
|
5341
5375
|
.card-header + .list-group .list-group-item:first-child {
|
|
5342
5376
|
border-top: 0;
|
|
@@ -5360,13 +5394,8 @@ input[type=button].btn-block {
|
|
|
5360
5394
|
padding: 0.75rem 1.25rem;
|
|
5361
5395
|
}
|
|
5362
5396
|
.card-footer:last-child {
|
|
5363
|
-
border-radius: 0 0 calc(
|
|
5364
|
-
0.25rem - 0px
|
|
5365
|
-
) calc(
|
|
5366
|
-
0.25rem - 0px
|
|
5367
|
-
);
|
|
5397
|
+
border-radius: 0 0 calc( 0.25rem - 0px ) calc( 0.25rem - 0px );
|
|
5368
5398
|
}
|
|
5369
|
-
|
|
5370
5399
|
.card-img-overlay {
|
|
5371
5400
|
bottom: 0;
|
|
5372
5401
|
left: 0;
|
|
@@ -6677,6 +6706,9 @@ input[type=button].btn-block {
|
|
|
6677
6706
|
.dropdown-action > .dropdown-toggle .lexicon-icon {
|
|
6678
6707
|
margin-top: 0;
|
|
6679
6708
|
}
|
|
6709
|
+
.dropdown-action > .dropdown-toggle .inline-item .lexicon-icon {
|
|
6710
|
+
margin-top: 0;
|
|
6711
|
+
}
|
|
6680
6712
|
.dropdown-menu-indicator-start .dropdown-item-indicator {
|
|
6681
6713
|
height: 1rem;
|
|
6682
6714
|
left: 1.25rem;
|
|
@@ -7275,10 +7307,11 @@ fieldset[disabled] label .form-control {
|
|
|
7275
7307
|
}
|
|
7276
7308
|
.form-control .label {
|
|
7277
7309
|
border-width: 0.0625rem;
|
|
7278
|
-
height:
|
|
7310
|
+
height: auto;
|
|
7279
7311
|
margin-bottom: 0.3125rem;
|
|
7280
7312
|
margin-right: 0.625rem;
|
|
7281
7313
|
margin-top: 0.3125rem;
|
|
7314
|
+
min-height: 1.5rem;
|
|
7282
7315
|
font-size: 0.75rem;
|
|
7283
7316
|
text-transform: none;
|
|
7284
7317
|
}
|
|
@@ -8137,20 +8170,24 @@ button.link-outline {
|
|
|
8137
8170
|
margin-bottom: calc((2rem - (1em * 1.25)) / 2);
|
|
8138
8171
|
margin-top: calc((2rem - (1em * 1.25)) / 2);
|
|
8139
8172
|
}
|
|
8140
|
-
.component-title
|
|
8173
|
+
.component-title[href],
|
|
8174
|
+
.component-title [href] {
|
|
8141
8175
|
color: #272833;
|
|
8142
8176
|
border-radius: 1px;
|
|
8143
8177
|
transition: box-shadow 0.15s ease-in-out;
|
|
8144
8178
|
}
|
|
8145
8179
|
@media (prefers-reduced-motion: reduce) {
|
|
8146
|
-
.component-title
|
|
8180
|
+
.component-title[href],
|
|
8181
|
+
.component-title [href] {
|
|
8147
8182
|
transition: none;
|
|
8148
8183
|
}
|
|
8149
8184
|
}
|
|
8150
|
-
.component-title
|
|
8185
|
+
.component-title[href]:hover,
|
|
8186
|
+
.component-title [href]:hover {
|
|
8151
8187
|
color: #060608;
|
|
8152
8188
|
}
|
|
8153
|
-
.component-title
|
|
8189
|
+
.component-title[href]:focus,
|
|
8190
|
+
.component-title [href]:focus {
|
|
8154
8191
|
color: #060608;
|
|
8155
8192
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
8156
8193
|
outline: 0;
|
|
@@ -8161,20 +8198,24 @@ button.link-outline {
|
|
|
8161
8198
|
font-weight: 600;
|
|
8162
8199
|
line-height: 1.45;
|
|
8163
8200
|
}
|
|
8164
|
-
.component-subtitle
|
|
8201
|
+
.component-subtitle[href],
|
|
8202
|
+
.component-subtitle [href] {
|
|
8165
8203
|
color: #6b6c7e;
|
|
8166
8204
|
border-radius: 1px;
|
|
8167
8205
|
transition: box-shadow 0.15s ease-in-out;
|
|
8168
8206
|
}
|
|
8169
8207
|
@media (prefers-reduced-motion: reduce) {
|
|
8170
|
-
.component-subtitle
|
|
8208
|
+
.component-subtitle[href],
|
|
8209
|
+
.component-subtitle [href] {
|
|
8171
8210
|
transition: none;
|
|
8172
8211
|
}
|
|
8173
8212
|
}
|
|
8174
|
-
.component-subtitle
|
|
8213
|
+
.component-subtitle[href]:hover,
|
|
8214
|
+
.component-subtitle [href]:hover {
|
|
8175
8215
|
color: #272833;
|
|
8176
8216
|
}
|
|
8177
|
-
.component-subtitle
|
|
8217
|
+
.component-subtitle[href]:focus,
|
|
8218
|
+
.component-subtitle [href]:focus {
|
|
8178
8219
|
color: #272833;
|
|
8179
8220
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
8180
8221
|
outline: 0;
|
|
@@ -8239,6 +8280,17 @@ button.link-outline {
|
|
|
8239
8280
|
margin-top: 0;
|
|
8240
8281
|
}
|
|
8241
8282
|
|
|
8283
|
+
.component-icon {
|
|
8284
|
+
align-items: center;
|
|
8285
|
+
display: inline-flex;
|
|
8286
|
+
height: 32px;
|
|
8287
|
+
justify-content: center;
|
|
8288
|
+
width: 32px;
|
|
8289
|
+
}
|
|
8290
|
+
.component-icon .lexicon-icon {
|
|
8291
|
+
margin-top: 0;
|
|
8292
|
+
}
|
|
8293
|
+
|
|
8242
8294
|
.clay-range {
|
|
8243
8295
|
padding-bottom: 0.1px;
|
|
8244
8296
|
}
|
|
@@ -10942,7 +10994,8 @@ label.custom-control-label {
|
|
|
10942
10994
|
margin-top: -0.25rem;
|
|
10943
10995
|
color: #272833;
|
|
10944
10996
|
}
|
|
10945
|
-
.list-group-title
|
|
10997
|
+
.list-group-title[href],
|
|
10998
|
+
.list-group-title [href] {
|
|
10946
10999
|
color: #272833;
|
|
10947
11000
|
max-width: 100%;
|
|
10948
11001
|
border-radius: 1px;
|
|
@@ -10950,14 +11003,17 @@ label.custom-control-label {
|
|
|
10950
11003
|
transition: box-shadow 0.15s ease-in-out;
|
|
10951
11004
|
}
|
|
10952
11005
|
@media (prefers-reduced-motion: reduce) {
|
|
10953
|
-
.list-group-title
|
|
11006
|
+
.list-group-title[href],
|
|
11007
|
+
.list-group-title [href] {
|
|
10954
11008
|
transition: none;
|
|
10955
11009
|
}
|
|
10956
11010
|
}
|
|
10957
|
-
.list-group-title
|
|
11011
|
+
.list-group-title[href]:hover,
|
|
11012
|
+
.list-group-title [href]:hover {
|
|
10958
11013
|
color: #272833;
|
|
10959
11014
|
}
|
|
10960
|
-
.list-group-title
|
|
11015
|
+
.list-group-title[href]:focus,
|
|
11016
|
+
.list-group-title [href]:focus {
|
|
10961
11017
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
10962
11018
|
outline: 0;
|
|
10963
11019
|
}
|
|
@@ -10965,7 +11021,8 @@ label.custom-control-label {
|
|
|
10965
11021
|
color: #6b6c7e;
|
|
10966
11022
|
margin-bottom: 0;
|
|
10967
11023
|
}
|
|
10968
|
-
.list-group-subtitle
|
|
11024
|
+
.list-group-subtitle[href],
|
|
11025
|
+
.list-group-subtitle [href] {
|
|
10969
11026
|
color: #6b6c7e;
|
|
10970
11027
|
border-radius: 1px;
|
|
10971
11028
|
display: inline-block;
|
|
@@ -10973,14 +11030,17 @@ label.custom-control-label {
|
|
|
10973
11030
|
transition: box-shadow 0.15s ease-in-out;
|
|
10974
11031
|
}
|
|
10975
11032
|
@media (prefers-reduced-motion: reduce) {
|
|
10976
|
-
.list-group-subtitle
|
|
11033
|
+
.list-group-subtitle[href],
|
|
11034
|
+
.list-group-subtitle [href] {
|
|
10977
11035
|
transition: none;
|
|
10978
11036
|
}
|
|
10979
11037
|
}
|
|
10980
|
-
.list-group-subtitle
|
|
11038
|
+
.list-group-subtitle[href]:hover,
|
|
11039
|
+
.list-group-subtitle [href]:hover {
|
|
10981
11040
|
color: #272833;
|
|
10982
11041
|
}
|
|
10983
|
-
.list-group-subtitle
|
|
11042
|
+
.list-group-subtitle[href]:focus,
|
|
11043
|
+
.list-group-subtitle [href]:focus {
|
|
10984
11044
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
10985
11045
|
outline: 0;
|
|
10986
11046
|
}
|
|
@@ -10989,7 +11049,8 @@ label.custom-control-label {
|
|
|
10989
11049
|
margin-bottom: 0;
|
|
10990
11050
|
line-height: 1.45;
|
|
10991
11051
|
}
|
|
10992
|
-
.list-group-text
|
|
11052
|
+
.list-group-text[href],
|
|
11053
|
+
.list-group-text [href] {
|
|
10993
11054
|
color: #272833;
|
|
10994
11055
|
border-radius: 1px;
|
|
10995
11056
|
display: inline-block;
|
|
@@ -10997,14 +11058,17 @@ label.custom-control-label {
|
|
|
10997
11058
|
transition: box-shadow 0.15s ease-in-out;
|
|
10998
11059
|
}
|
|
10999
11060
|
@media (prefers-reduced-motion: reduce) {
|
|
11000
|
-
.list-group-text
|
|
11061
|
+
.list-group-text[href],
|
|
11062
|
+
.list-group-text [href] {
|
|
11001
11063
|
transition: none;
|
|
11002
11064
|
}
|
|
11003
11065
|
}
|
|
11004
|
-
.list-group-text
|
|
11066
|
+
.list-group-text[href]:hover,
|
|
11067
|
+
.list-group-text [href]:hover {
|
|
11005
11068
|
color: #272833;
|
|
11006
11069
|
}
|
|
11007
|
-
.list-group-text
|
|
11070
|
+
.list-group-text[href]:focus,
|
|
11071
|
+
.list-group-text [href]:focus {
|
|
11008
11072
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
11009
11073
|
outline: 0;
|
|
11010
11074
|
}
|
|
@@ -11013,7 +11077,8 @@ label.custom-control-label {
|
|
|
11013
11077
|
margin-bottom: 0;
|
|
11014
11078
|
line-height: 1.45;
|
|
11015
11079
|
}
|
|
11016
|
-
.list-group-subtext
|
|
11080
|
+
.list-group-subtext[href],
|
|
11081
|
+
.list-group-subtext [href] {
|
|
11017
11082
|
color: #6b6c7e;
|
|
11018
11083
|
border-radius: 1px;
|
|
11019
11084
|
display: inline-block;
|
|
@@ -11021,14 +11086,17 @@ label.custom-control-label {
|
|
|
11021
11086
|
transition: box-shadow 0.15s ease-in-out;
|
|
11022
11087
|
}
|
|
11023
11088
|
@media (prefers-reduced-motion: reduce) {
|
|
11024
|
-
.list-group-subtext
|
|
11089
|
+
.list-group-subtext[href],
|
|
11090
|
+
.list-group-subtext [href] {
|
|
11025
11091
|
transition: none;
|
|
11026
11092
|
}
|
|
11027
11093
|
}
|
|
11028
|
-
.list-group-subtext
|
|
11094
|
+
.list-group-subtext[href]:hover,
|
|
11095
|
+
.list-group-subtext [href]:hover {
|
|
11029
11096
|
color: #272833;
|
|
11030
11097
|
}
|
|
11031
|
-
.list-group-subtext
|
|
11098
|
+
.list-group-subtext[href]:focus,
|
|
11099
|
+
.list-group-subtext [href]:focus {
|
|
11032
11100
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
11033
11101
|
outline: 0;
|
|
11034
11102
|
}
|
|
@@ -17827,7 +17895,8 @@ a.sheet-subtitle:focus {
|
|
|
17827
17895
|
font-size: 1.25rem;
|
|
17828
17896
|
font-weight: 600;
|
|
17829
17897
|
}
|
|
17830
|
-
.sidebar-header .component-title
|
|
17898
|
+
.sidebar-header .component-title[href],
|
|
17899
|
+
.sidebar-header .component-title [href] {
|
|
17831
17900
|
color: #272833;
|
|
17832
17901
|
}
|
|
17833
17902
|
.sidebar-header .component-subtitle {
|
|
@@ -17920,7 +17989,8 @@ a.sheet-subtitle:focus {
|
|
|
17920
17989
|
.sidebar-light .sidebar-list-group .list-group-title {
|
|
17921
17990
|
font-size: 1rem;
|
|
17922
17991
|
}
|
|
17923
|
-
.sidebar-light .sidebar-list-group .list-group-title
|
|
17992
|
+
.sidebar-light .sidebar-list-group .list-group-title[href],
|
|
17993
|
+
.sidebar-light .sidebar-list-group .list-group-title [href] {
|
|
17924
17994
|
color: #272833;
|
|
17925
17995
|
}
|
|
17926
17996
|
.sidebar-light .sidebar-panel {
|
|
@@ -17929,7 +17999,8 @@ a.sheet-subtitle:focus {
|
|
|
17929
17999
|
.sidebar-light .sidebar-dt {
|
|
17930
18000
|
color: #6b6c7e;
|
|
17931
18001
|
}
|
|
17932
|
-
.sidebar-light .sidebar-dd
|
|
18002
|
+
.sidebar-light .sidebar-dd[href],
|
|
18003
|
+
.sidebar-light .sidebar-dd [href] {
|
|
17933
18004
|
color: #272833;
|
|
17934
18005
|
}
|
|
17935
18006
|
.sidebar-light .panel-unstyled .panel-header.panel-header-link:focus {
|
|
@@ -18000,13 +18071,15 @@ a.sheet-subtitle:focus {
|
|
|
18000
18071
|
.sidebar-dark .sidebar-header .component-title {
|
|
18001
18072
|
color: inherit;
|
|
18002
18073
|
}
|
|
18003
|
-
.sidebar-dark .sidebar-header .component-title
|
|
18074
|
+
.sidebar-dark .sidebar-header .component-title[href],
|
|
18075
|
+
.sidebar-dark .sidebar-header .component-title [href] {
|
|
18004
18076
|
color: inherit;
|
|
18005
18077
|
}
|
|
18006
18078
|
.sidebar-dark .sidebar-header .component-subtitle {
|
|
18007
18079
|
color: inherit;
|
|
18008
18080
|
}
|
|
18009
|
-
.sidebar-dark .sidebar-header .component-subtitle
|
|
18081
|
+
.sidebar-dark .sidebar-header .component-subtitle[href],
|
|
18082
|
+
.sidebar-dark .sidebar-header .component-subtitle [href] {
|
|
18010
18083
|
color: inherit;
|
|
18011
18084
|
}
|
|
18012
18085
|
.sidebar-dark .nav-nested .nav-link {
|
|
@@ -18598,7 +18671,8 @@ caption {
|
|
|
18598
18671
|
margin-bottom: 0;
|
|
18599
18672
|
color: #272833;
|
|
18600
18673
|
}
|
|
18601
|
-
.table-title
|
|
18674
|
+
.table-title[href],
|
|
18675
|
+
.table-title [href] {
|
|
18602
18676
|
color: #272833;
|
|
18603
18677
|
border-radius: 1px;
|
|
18604
18678
|
display: inline-block;
|
|
@@ -18606,14 +18680,17 @@ caption {
|
|
|
18606
18680
|
transition: box-shadow 0.15s ease-in-out;
|
|
18607
18681
|
}
|
|
18608
18682
|
@media (prefers-reduced-motion: reduce) {
|
|
18609
|
-
.table-title
|
|
18683
|
+
.table-title[href],
|
|
18684
|
+
.table-title [href] {
|
|
18610
18685
|
transition: none;
|
|
18611
18686
|
}
|
|
18612
18687
|
}
|
|
18613
|
-
.table-title
|
|
18688
|
+
.table-title[href]:hover,
|
|
18689
|
+
.table-title [href]:hover {
|
|
18614
18690
|
color: #272833;
|
|
18615
18691
|
}
|
|
18616
|
-
.table-title
|
|
18692
|
+
.table-title[href]:focus,
|
|
18693
|
+
.table-title [href]:focus {
|
|
18617
18694
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
18618
18695
|
outline: 0;
|
|
18619
18696
|
}
|
|
@@ -18933,7 +19010,8 @@ caption {
|
|
|
18933
19010
|
margin-bottom: 0;
|
|
18934
19011
|
color: #272833;
|
|
18935
19012
|
}
|
|
18936
|
-
.table-list-title
|
|
19013
|
+
.table-list-title[href],
|
|
19014
|
+
.table-list-title [href] {
|
|
18937
19015
|
color: #272833;
|
|
18938
19016
|
border-radius: 1px;
|
|
18939
19017
|
display: inline-block;
|
|
@@ -18941,14 +19019,17 @@ caption {
|
|
|
18941
19019
|
transition: box-shadow 0.15s ease-in-out;
|
|
18942
19020
|
}
|
|
18943
19021
|
@media (prefers-reduced-motion: reduce) {
|
|
18944
|
-
.table-list-title
|
|
19022
|
+
.table-list-title[href],
|
|
19023
|
+
.table-list-title [href] {
|
|
18945
19024
|
transition: none;
|
|
18946
19025
|
}
|
|
18947
19026
|
}
|
|
18948
|
-
.table-list-title
|
|
19027
|
+
.table-list-title[href]:hover,
|
|
19028
|
+
.table-list-title [href]:hover {
|
|
18949
19029
|
color: #272833;
|
|
18950
19030
|
}
|
|
18951
|
-
.table-list-title
|
|
19031
|
+
.table-list-title[href]:focus,
|
|
19032
|
+
.table-list-title [href]:focus {
|
|
18952
19033
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
18953
19034
|
outline: 0;
|
|
18954
19035
|
}
|
|
@@ -20662,6 +20743,244 @@ caption {
|
|
|
20662
20743
|
margin-left: 0;
|
|
20663
20744
|
right: 0.5rem;
|
|
20664
20745
|
}
|
|
20746
|
+
.treeview {
|
|
20747
|
+
display: flex;
|
|
20748
|
+
flex-direction: column;
|
|
20749
|
+
font-size: 14px;
|
|
20750
|
+
list-style: none;
|
|
20751
|
+
margin-bottom: 0;
|
|
20752
|
+
padding: 2px 0;
|
|
20753
|
+
}
|
|
20754
|
+
.treeview .btn-monospaced {
|
|
20755
|
+
font-size: 14px;
|
|
20756
|
+
height: 24px;
|
|
20757
|
+
width: 24px;
|
|
20758
|
+
}
|
|
20759
|
+
.treeview .btn-monospaced:focus, .treeview .btn-monospaced.focus {
|
|
20760
|
+
box-shadow: inset 0 0 0 0.125rem #80acff , inset 0 0 0 0.25rem #fff;
|
|
20761
|
+
}
|
|
20762
|
+
.treeview .btn-monospaced:active:focus {
|
|
20763
|
+
box-shadow: inset 0 0 0 0.125rem #80acff , inset 0 0 0 0.25rem #fff;
|
|
20764
|
+
}
|
|
20765
|
+
.treeview .custom-control {
|
|
20766
|
+
margin-left: 4px;
|
|
20767
|
+
margin-right: 4px;
|
|
20768
|
+
margin-top: 1.5px;
|
|
20769
|
+
}
|
|
20770
|
+
.treeview .component-expander .lexicon-icon:not(.component-expanded-d-none) {
|
|
20771
|
+
display: none;
|
|
20772
|
+
}
|
|
20773
|
+
.treeview .component-action {
|
|
20774
|
+
display: none;
|
|
20775
|
+
margin-left: 2px;
|
|
20776
|
+
margin-right: 2px;
|
|
20777
|
+
}
|
|
20778
|
+
.treeview .component-action:hover {
|
|
20779
|
+
background-color: transparent;
|
|
20780
|
+
color: #6b6c7e;
|
|
20781
|
+
}
|
|
20782
|
+
.treeview .component-action:focus, .treeview .component-action.focus {
|
|
20783
|
+
color: #6b6c7e;
|
|
20784
|
+
}
|
|
20785
|
+
.treeview .component-action:active {
|
|
20786
|
+
background-color: transparent;
|
|
20787
|
+
}
|
|
20788
|
+
.treeview .component-action.active {
|
|
20789
|
+
background-color: transparent;
|
|
20790
|
+
}
|
|
20791
|
+
.treeview .component-action[aria-expanded=true], .treeview .component-action.show {
|
|
20792
|
+
background-color: transparent;
|
|
20793
|
+
}
|
|
20794
|
+
.treeview .component-icon {
|
|
20795
|
+
display: inline;
|
|
20796
|
+
height: auto;
|
|
20797
|
+
margin-left: 4px;
|
|
20798
|
+
margin-right: 4px;
|
|
20799
|
+
width: auto;
|
|
20800
|
+
}
|
|
20801
|
+
.treeview .component-text {
|
|
20802
|
+
padding-bottom: 1.5px;
|
|
20803
|
+
padding-left: 4px;
|
|
20804
|
+
padding-top: 1.5px;
|
|
20805
|
+
-ms-user-select: auto;
|
|
20806
|
+
-moz-user-select: auto;
|
|
20807
|
+
-webkit-user-select: auto;
|
|
20808
|
+
user-select: auto;
|
|
20809
|
+
}
|
|
20810
|
+
.treeview.show-component-expander-on-hover:hover .component-expander, .treeview.show-component-expander-on-hover.hover .component-expander {
|
|
20811
|
+
opacity: 1;
|
|
20812
|
+
transition: opacity ease-in-out 600ms;
|
|
20813
|
+
}
|
|
20814
|
+
@media (prefers-reduced-motion: reduce) {
|
|
20815
|
+
.treeview.show-component-expander-on-hover:hover .component-expander, .treeview.show-component-expander-on-hover.hover .component-expander {
|
|
20816
|
+
transition: none;
|
|
20817
|
+
}
|
|
20818
|
+
}
|
|
20819
|
+
.treeview.show-component-expander-on-hover .treeview-link:focus .component-expander, .treeview.show-component-expander-on-hover .treeview-link.focus .component-expander {
|
|
20820
|
+
opacity: 1;
|
|
20821
|
+
transition: none;
|
|
20822
|
+
}
|
|
20823
|
+
.treeview.show-component-expander-on-hover .component-expander {
|
|
20824
|
+
opacity: 0;
|
|
20825
|
+
transition: opacity ease-in-out 450ms;
|
|
20826
|
+
}
|
|
20827
|
+
@media (prefers-reduced-motion: reduce) {
|
|
20828
|
+
.treeview.show-component-expander-on-hover .component-expander {
|
|
20829
|
+
transition: none;
|
|
20830
|
+
}
|
|
20831
|
+
}
|
|
20832
|
+
|
|
20833
|
+
.treeview-group {
|
|
20834
|
+
display: flex;
|
|
20835
|
+
flex-direction: column;
|
|
20836
|
+
list-style: none;
|
|
20837
|
+
margin-bottom: 0;
|
|
20838
|
+
padding-left: 0;
|
|
20839
|
+
}
|
|
20840
|
+
|
|
20841
|
+
.treeview-item {
|
|
20842
|
+
overflow-wrap: break-word;
|
|
20843
|
+
word-wrap: break-word;
|
|
20844
|
+
}
|
|
20845
|
+
.treeview-link {
|
|
20846
|
+
background-color: transparent;
|
|
20847
|
+
cursor: pointer;
|
|
20848
|
+
display: block;
|
|
20849
|
+
border-color: transparent;
|
|
20850
|
+
border-style: solid;
|
|
20851
|
+
border-width: 1px;
|
|
20852
|
+
margin-bottom: 2px;
|
|
20853
|
+
margin-top: 2px;
|
|
20854
|
+
min-width: 100%;
|
|
20855
|
+
padding: 0;
|
|
20856
|
+
position: relative;
|
|
20857
|
+
text-align: left;
|
|
20858
|
+
-ms-user-select: none;
|
|
20859
|
+
-moz-user-select: none;
|
|
20860
|
+
-webkit-user-select: none;
|
|
20861
|
+
user-select: none;
|
|
20862
|
+
}
|
|
20863
|
+
.treeview-link:hover {
|
|
20864
|
+
text-decoration: none;
|
|
20865
|
+
}
|
|
20866
|
+
.treeview-link:focus {
|
|
20867
|
+
box-shadow: inset 0 0 0 0.125rem #80acff , inset 0 0 0 0.25rem #fff;
|
|
20868
|
+
outline: 0;
|
|
20869
|
+
}
|
|
20870
|
+
.treeview-link:disabled, .treeview-link.disabled {
|
|
20871
|
+
cursor: not-allowed;
|
|
20872
|
+
}
|
|
20873
|
+
.treeview-link.treeview-dropping-bottom {
|
|
20874
|
+
box-shadow: 0 2px 0 0 #80acff;
|
|
20875
|
+
}
|
|
20876
|
+
.treeview-link.treeview-dropping-middle {
|
|
20877
|
+
background-color: #f0f5ff;
|
|
20878
|
+
border-color: #80acff;
|
|
20879
|
+
}
|
|
20880
|
+
.treeview-link.treeview-dropping-top {
|
|
20881
|
+
box-shadow: 0 -2px 0 0 #80acff;
|
|
20882
|
+
}
|
|
20883
|
+
.treeview-link.hover .component-action, .treeview-link:hover .component-action, .treeview-link.focus .component-action, .treeview-link:focus .component-action {
|
|
20884
|
+
display: flex;
|
|
20885
|
+
}
|
|
20886
|
+
.treeview-link:disabled .component-action, .treeview-link.disabled .component-action {
|
|
20887
|
+
display: none;
|
|
20888
|
+
}
|
|
20889
|
+
.treeview-link.show .component-expander .component-expanded-d-none, .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
|
|
20890
|
+
display: none;
|
|
20891
|
+
}
|
|
20892
|
+
.treeview-link.show .component-expander .lexicon-icon:not(.component-expanded-d-none), .treeview-link[aria-expanded=true] .component-expander .lexicon-icon:not(.component-expanded-d-none) {
|
|
20893
|
+
display: inline-block;
|
|
20894
|
+
}
|
|
20895
|
+
|
|
20896
|
+
.treeview-nested-margins .treeview-group .treeview-item {
|
|
20897
|
+
margin-left: 24px;
|
|
20898
|
+
}
|
|
20899
|
+
|
|
20900
|
+
.treeview-item-dragging {
|
|
20901
|
+
cursor: not-allowed;
|
|
20902
|
+
opacity: 0.4;
|
|
20903
|
+
}
|
|
20904
|
+
.treeview-item-dragging .treeview-link {
|
|
20905
|
+
background-color: transparent;
|
|
20906
|
+
border-color: transparent;
|
|
20907
|
+
box-shadow: none;
|
|
20908
|
+
}
|
|
20909
|
+
.treeview-dragging {
|
|
20910
|
+
background-color: #fff;
|
|
20911
|
+
border-color: #80acff;
|
|
20912
|
+
border-radius: 0.1875rem;
|
|
20913
|
+
border-style: solid;
|
|
20914
|
+
border-width: 1px;
|
|
20915
|
+
display: inline-block;
|
|
20916
|
+
font-size: 10px;
|
|
20917
|
+
font-weight: 600;
|
|
20918
|
+
padding: 4px 12px;
|
|
20919
|
+
text-transform: uppercase;
|
|
20920
|
+
}
|
|
20921
|
+
|
|
20922
|
+
.treeview-light .component-expander {
|
|
20923
|
+
color: #6b6c7e;
|
|
20924
|
+
}
|
|
20925
|
+
.treeview-light .component-expander:hover {
|
|
20926
|
+
color: #0b5fff;
|
|
20927
|
+
}
|
|
20928
|
+
.treeview-light .component-expander:disabled, .treeview-light .component-expander.disabled {
|
|
20929
|
+
color: #6b6c7e;
|
|
20930
|
+
opacity: 0.5;
|
|
20931
|
+
}
|
|
20932
|
+
.treeview-light .component-expander.btn-secondary {
|
|
20933
|
+
background-color: #fff;
|
|
20934
|
+
}
|
|
20935
|
+
.treeview-light .treeview-link {
|
|
20936
|
+
color: #6b6c7e;
|
|
20937
|
+
}
|
|
20938
|
+
.treeview-light .treeview-link:hover {
|
|
20939
|
+
background-color: #f7f8f9;
|
|
20940
|
+
color: #272833;
|
|
20941
|
+
}
|
|
20942
|
+
.treeview-light .treeview-link:active {
|
|
20943
|
+
background-color: #f1f2f5;
|
|
20944
|
+
color: #272833;
|
|
20945
|
+
}
|
|
20946
|
+
.treeview-light .treeview-link.active {
|
|
20947
|
+
background-color: #f1f2f5;
|
|
20948
|
+
color: #272833;
|
|
20949
|
+
}
|
|
20950
|
+
.treeview-light .treeview-link:disabled, .treeview-light .treeview-link.disabled {
|
|
20951
|
+
background-color: transparent;
|
|
20952
|
+
color: rgba(107, 108, 126, 0.5);
|
|
20953
|
+
}
|
|
20954
|
+
.treeview-dark .component-expander {
|
|
20955
|
+
color: #a7a9bc;
|
|
20956
|
+
}
|
|
20957
|
+
.treeview-dark .component-expander:hover {
|
|
20958
|
+
color: #80acff;
|
|
20959
|
+
}
|
|
20960
|
+
.treeview-dark .component-expander:disabled, .treeview-dark .component-expander.disabled {
|
|
20961
|
+
color: #a7a9bc;
|
|
20962
|
+
opacity: 0.5;
|
|
20963
|
+
}
|
|
20964
|
+
.treeview-dark .treeview-link {
|
|
20965
|
+
color: #a7a9bc;
|
|
20966
|
+
}
|
|
20967
|
+
.treeview-dark .treeview-link:hover {
|
|
20968
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
20969
|
+
}
|
|
20970
|
+
.treeview-dark .treeview-link.active {
|
|
20971
|
+
background-color: rgba(255, 255, 255, 0.06);
|
|
20972
|
+
color: #fff;
|
|
20973
|
+
}
|
|
20974
|
+
.treeview-dark .treeview-link:disabled, .treeview-dark .treeview-link.disabled {
|
|
20975
|
+
background-color: transparent;
|
|
20976
|
+
color: rgba(167, 169, 188, 0.5);
|
|
20977
|
+
}
|
|
20978
|
+
.treeview-dark .component-action {
|
|
20979
|
+
color: #a7a9bc;
|
|
20980
|
+
}
|
|
20981
|
+
.treeview-dark .component-action:disabled, .treeview-dark .component-action.disabled {
|
|
20982
|
+
color: #a7a9bc;
|
|
20983
|
+
}
|
|
20665
20984
|
.bg-checkered {
|
|
20666
20985
|
background-image: linear-gradient(45deg, #e7e7ed 25%, transparent 25%), linear-gradient(-45deg, #e7e7ed 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e7e7ed 75%), linear-gradient(-45deg, transparent 75%, #e7e7ed 75%);
|
|
20667
20986
|
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
|
|
@@ -29191,10 +29510,6 @@ button.bg-dark:focus {
|
|
|
29191
29510
|
z-index: 1;
|
|
29192
29511
|
}
|
|
29193
29512
|
|
|
29194
|
-
.text-monospace {
|
|
29195
|
-
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
|
|
29196
|
-
}
|
|
29197
|
-
|
|
29198
29513
|
.text-justify {
|
|
29199
29514
|
text-align: justify !important;
|
|
29200
29515
|
}
|
|
@@ -29289,34 +29604,90 @@ button.bg-dark:focus {
|
|
|
29289
29604
|
text-transform: capitalize !important;
|
|
29290
29605
|
}
|
|
29291
29606
|
|
|
29292
|
-
.font-weight-
|
|
29293
|
-
|
|
29607
|
+
.font-weight-lighter,
|
|
29608
|
+
.text-weight-lighter {
|
|
29609
|
+
font-weight: lighter !important;
|
|
29294
29610
|
}
|
|
29295
29611
|
|
|
29296
|
-
.font-weight-
|
|
29297
|
-
|
|
29612
|
+
.font-weight-light,
|
|
29613
|
+
.text-weight-light {
|
|
29614
|
+
font-weight: 300 !important;
|
|
29298
29615
|
}
|
|
29299
29616
|
|
|
29300
|
-
.font-weight-normal
|
|
29617
|
+
.font-weight-normal,
|
|
29618
|
+
.text-weight-normal {
|
|
29301
29619
|
font-weight: 400 !important;
|
|
29302
29620
|
}
|
|
29303
29621
|
|
|
29304
|
-
.font-weight-semi-bold
|
|
29622
|
+
.font-weight-semi-bold,
|
|
29623
|
+
.text-weight-semi-bold {
|
|
29305
29624
|
font-weight: 600 !important;
|
|
29306
29625
|
}
|
|
29307
29626
|
|
|
29308
|
-
.font-weight-bold
|
|
29627
|
+
.font-weight-bold,
|
|
29628
|
+
.text-weight-bold {
|
|
29309
29629
|
font-weight: 700 !important;
|
|
29310
29630
|
}
|
|
29311
29631
|
|
|
29312
|
-
.font-weight-bolder
|
|
29632
|
+
.font-weight-bolder,
|
|
29633
|
+
.text-weight-bolder {
|
|
29313
29634
|
font-weight: 900 !important;
|
|
29314
29635
|
}
|
|
29315
29636
|
|
|
29316
|
-
.font-italic
|
|
29637
|
+
.font-italic,
|
|
29638
|
+
.text-italic {
|
|
29317
29639
|
font-style: italic !important;
|
|
29318
29640
|
}
|
|
29319
29641
|
|
|
29642
|
+
.font-monospace,
|
|
29643
|
+
.text-monospace {
|
|
29644
|
+
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
|
|
29645
|
+
}
|
|
29646
|
+
|
|
29647
|
+
.text-1 {
|
|
29648
|
+
font-size: 0.625rem;
|
|
29649
|
+
}
|
|
29650
|
+
|
|
29651
|
+
.text-2 {
|
|
29652
|
+
font-size: 0.75rem;
|
|
29653
|
+
}
|
|
29654
|
+
|
|
29655
|
+
.text-3 {
|
|
29656
|
+
font-size: 0.875rem;
|
|
29657
|
+
}
|
|
29658
|
+
|
|
29659
|
+
.text-4 {
|
|
29660
|
+
font-size: 1rem;
|
|
29661
|
+
}
|
|
29662
|
+
|
|
29663
|
+
.text-5 {
|
|
29664
|
+
font-size: 1.125rem;
|
|
29665
|
+
}
|
|
29666
|
+
|
|
29667
|
+
.text-6 {
|
|
29668
|
+
font-size: 1.25rem;
|
|
29669
|
+
}
|
|
29670
|
+
|
|
29671
|
+
.text-7 {
|
|
29672
|
+
font-size: 1.5rem;
|
|
29673
|
+
}
|
|
29674
|
+
|
|
29675
|
+
.text-8 {
|
|
29676
|
+
font-size: 1.75rem;
|
|
29677
|
+
}
|
|
29678
|
+
|
|
29679
|
+
.text-9 {
|
|
29680
|
+
font-size: 2rem;
|
|
29681
|
+
}
|
|
29682
|
+
|
|
29683
|
+
.text-10 {
|
|
29684
|
+
font-size: 2.25rem;
|
|
29685
|
+
}
|
|
29686
|
+
|
|
29687
|
+
.text-11 {
|
|
29688
|
+
font-size: 2.5rem;
|
|
29689
|
+
}
|
|
29690
|
+
|
|
29320
29691
|
.text-white {
|
|
29321
29692
|
color: #fff !important;
|
|
29322
29693
|
}
|