@clayui/css 3.42.0 → 3.43.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/lib/css/atlas.css +251 -126
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +228 -105
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +157 -174
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/atlas/variables/_buttons.scss +2 -31
- package/src/scss/atlas/variables/_navs.scss +20 -15
- package/src/scss/cadmin/components/_dropdowns.scss +4 -0
- package/src/scss/cadmin/components/_input-groups.scss +11 -313
- package/src/scss/cadmin/components/_navs.scss +23 -113
- package/src/scss/cadmin/components/_utilities-functional-important.scss +4 -3
- package/src/scss/cadmin/variables/_alerts.scss +3 -2
- package/src/scss/cadmin/variables/_dropdowns.scss +31 -2
- package/src/scss/cadmin/variables/_forms.scss +366 -5
- package/src/scss/cadmin/variables/_navs.scss +227 -52
- package/src/scss/components/_buttons.scss +87 -49
- package/src/scss/components/_dropdowns.scss +4 -0
- package/src/scss/components/_input-groups.scss +12 -308
- package/src/scss/components/_navs.scss +33 -128
- package/src/scss/mixins/_dropdown-menu.scss +427 -355
- package/src/scss/mixins/_forms.scss +67 -10
- package/src/scss/mixins/_input-groups.scss +405 -11
- package/src/scss/mixins/_labels.scss +320 -296
- package/src/scss/mixins/_nav.scss +202 -131
- package/src/scss/variables/_alerts.scss +1 -0
- package/src/scss/variables/_buttons.scss +26 -3
- package/src/scss/variables/_dropdowns.scss +31 -2
- package/src/scss/variables/_forms.scss +405 -22
- package/src/scss/variables/_navs.scss +223 -32
package/lib/css/atlas.css
CHANGED
|
@@ -1360,10 +1360,6 @@ input[type=button].btn-block {
|
|
|
1360
1360
|
padding: 0;
|
|
1361
1361
|
width: 100%;
|
|
1362
1362
|
}
|
|
1363
|
-
.btn-monospaced.btn .lexicon-icon {
|
|
1364
|
-
margin-top: 0;
|
|
1365
|
-
}
|
|
1366
|
-
|
|
1367
1363
|
.btn-group-vertical > .btn-monospaced.btn-lg, .btn-group-lg .btn-monospaced, .btn-monospaced.btn-lg {
|
|
1368
1364
|
height: 3rem;
|
|
1369
1365
|
width: 3rem;
|
|
@@ -1407,6 +1403,11 @@ input[type=button].btn-block {
|
|
|
1407
1403
|
border-color: transparent;
|
|
1408
1404
|
color: #fff;
|
|
1409
1405
|
}
|
|
1406
|
+
.form-file-input:focus + .btn-primary {
|
|
1407
|
+
background-color: #0053f0;
|
|
1408
|
+
border-color: #004ad7;
|
|
1409
|
+
color: #fff;
|
|
1410
|
+
}
|
|
1410
1411
|
.btn-secondary {
|
|
1411
1412
|
background-color: #fff;
|
|
1412
1413
|
border-color: #cdced9;
|
|
@@ -1442,6 +1443,11 @@ input[type=button].btn-block {
|
|
|
1442
1443
|
border-color: #cdced9;
|
|
1443
1444
|
color: #272833;
|
|
1444
1445
|
}
|
|
1446
|
+
.form-file-input:focus + .btn-secondary {
|
|
1447
|
+
background-color: #f7f8f9;
|
|
1448
|
+
border-color: #cdced9;
|
|
1449
|
+
color: #272833;
|
|
1450
|
+
}
|
|
1445
1451
|
.btn-success {
|
|
1446
1452
|
background-color: #287d3c;
|
|
1447
1453
|
border-color: #287d3c;
|
|
@@ -1477,6 +1483,11 @@ input[type=button].btn-block {
|
|
|
1477
1483
|
border-color: transparent;
|
|
1478
1484
|
color: #fff;
|
|
1479
1485
|
}
|
|
1486
|
+
.form-file-input:focus + .btn-success {
|
|
1487
|
+
background-color: #226a33;
|
|
1488
|
+
border-color: transparent;
|
|
1489
|
+
color: #fff;
|
|
1490
|
+
}
|
|
1480
1491
|
.btn-info {
|
|
1481
1492
|
background-color: #2e5aac;
|
|
1482
1493
|
border-color: #2e5aac;
|
|
@@ -1547,6 +1558,11 @@ input[type=button].btn-block {
|
|
|
1547
1558
|
border-color: transparent;
|
|
1548
1559
|
color: #fff;
|
|
1549
1560
|
}
|
|
1561
|
+
.form-file-input:focus + .btn-warning {
|
|
1562
|
+
background-color: #9f4500;
|
|
1563
|
+
border-color: transparent;
|
|
1564
|
+
color: #fff;
|
|
1565
|
+
}
|
|
1550
1566
|
.btn-danger {
|
|
1551
1567
|
background-color: #da1414;
|
|
1552
1568
|
border-color: #da1414;
|
|
@@ -1582,6 +1598,11 @@ input[type=button].btn-block {
|
|
|
1582
1598
|
border-color: transparent;
|
|
1583
1599
|
color: #fff;
|
|
1584
1600
|
}
|
|
1601
|
+
.form-file-input:focus + .btn-danger {
|
|
1602
|
+
background-color: #c31212;
|
|
1603
|
+
border-color: transparent;
|
|
1604
|
+
color: #fff;
|
|
1605
|
+
}
|
|
1585
1606
|
.btn-light {
|
|
1586
1607
|
background-color: #f1f2f5;
|
|
1587
1608
|
border-color: #f1f2f5;
|
|
@@ -1617,6 +1638,11 @@ input[type=button].btn-block {
|
|
|
1617
1638
|
border-color: transparent;
|
|
1618
1639
|
color: #272833;
|
|
1619
1640
|
}
|
|
1641
|
+
.form-file-input:focus + .btn-light {
|
|
1642
|
+
background-color: #e2e4ea;
|
|
1643
|
+
border-color: transparent;
|
|
1644
|
+
color: #272833;
|
|
1645
|
+
}
|
|
1620
1646
|
.btn-dark {
|
|
1621
1647
|
background-color: #272833;
|
|
1622
1648
|
border-color: #272833;
|
|
@@ -1652,6 +1678,11 @@ input[type=button].btn-block {
|
|
|
1652
1678
|
border-color: transparent;
|
|
1653
1679
|
color: #fff;
|
|
1654
1680
|
}
|
|
1681
|
+
.form-file-input:focus + .btn-dark {
|
|
1682
|
+
background-color: #1c1c24;
|
|
1683
|
+
border-color: transparent;
|
|
1684
|
+
color: #fff;
|
|
1685
|
+
}
|
|
1655
1686
|
.btn-link {
|
|
1656
1687
|
border-radius: 1px;
|
|
1657
1688
|
box-shadow: [none];
|
|
@@ -1774,6 +1805,7 @@ input[type=button].btn-block {
|
|
|
1774
1805
|
}
|
|
1775
1806
|
.btn-outline-success:disabled, .disabled.btn-outline-success {
|
|
1776
1807
|
background-color: transparent;
|
|
1808
|
+
color: #287d3c;
|
|
1777
1809
|
}
|
|
1778
1810
|
[aria-expanded=true].btn-outline-success, .show.btn-outline-success {
|
|
1779
1811
|
background-color: #1c5629;
|
|
@@ -1805,6 +1837,7 @@ input[type=button].btn-block {
|
|
|
1805
1837
|
}
|
|
1806
1838
|
.btn-outline-info:disabled, .disabled.btn-outline-info {
|
|
1807
1839
|
background-color: transparent;
|
|
1840
|
+
color: #2e5aac;
|
|
1808
1841
|
}
|
|
1809
1842
|
[aria-expanded=true].btn-outline-info, .show.btn-outline-info {
|
|
1810
1843
|
background-color: #234584;
|
|
@@ -1836,6 +1869,7 @@ input[type=button].btn-block {
|
|
|
1836
1869
|
}
|
|
1837
1870
|
.btn-outline-warning:disabled, .disabled.btn-outline-warning {
|
|
1838
1871
|
background-color: transparent;
|
|
1872
|
+
color: #b95000;
|
|
1839
1873
|
}
|
|
1840
1874
|
[aria-expanded=true].btn-outline-warning, .show.btn-outline-warning {
|
|
1841
1875
|
background-color: #863a00;
|
|
@@ -1856,17 +1890,21 @@ input[type=button].btn-block {
|
|
|
1856
1890
|
color: #fff;
|
|
1857
1891
|
}
|
|
1858
1892
|
.btn-outline-danger:active {
|
|
1893
|
+
background-color: #ab1010;
|
|
1859
1894
|
border-color: #da1414;
|
|
1860
1895
|
color: #fff;
|
|
1861
1896
|
}
|
|
1862
1897
|
.active.btn-outline-danger {
|
|
1898
|
+
background-color: #ab1010;
|
|
1863
1899
|
border-color: #da1414;
|
|
1864
1900
|
color: #fff;
|
|
1865
1901
|
}
|
|
1866
1902
|
.btn-outline-danger:disabled, .disabled.btn-outline-danger {
|
|
1867
1903
|
background-color: transparent;
|
|
1904
|
+
color: #da1414;
|
|
1868
1905
|
}
|
|
1869
1906
|
[aria-expanded=true].btn-outline-danger, .show.btn-outline-danger {
|
|
1907
|
+
background-color: #ab1010;
|
|
1870
1908
|
border-color: #da1414;
|
|
1871
1909
|
color: #fff;
|
|
1872
1910
|
}
|
|
@@ -1895,6 +1933,7 @@ input[type=button].btn-block {
|
|
|
1895
1933
|
}
|
|
1896
1934
|
.btn-outline-light:disabled, .disabled.btn-outline-light {
|
|
1897
1935
|
background-color: transparent;
|
|
1936
|
+
color: #f1f2f5;
|
|
1898
1937
|
}
|
|
1899
1938
|
[aria-expanded=true].btn-outline-light, .show.btn-outline-light {
|
|
1900
1939
|
background-color: #d3d6e0;
|
|
@@ -1926,6 +1965,7 @@ input[type=button].btn-block {
|
|
|
1926
1965
|
}
|
|
1927
1966
|
.btn-outline-dark:disabled, .disabled.btn-outline-dark {
|
|
1928
1967
|
background-color: transparent;
|
|
1968
|
+
color: #272833;
|
|
1929
1969
|
}
|
|
1930
1970
|
[aria-expanded=true].btn-outline-dark, .show.btn-outline-dark {
|
|
1931
1971
|
background-color: #111116;
|
|
@@ -3250,6 +3290,7 @@ input[type=button].btn-block {
|
|
|
3250
3290
|
margin-bottom: 1rem;
|
|
3251
3291
|
padding: 0.9375rem 1rem;
|
|
3252
3292
|
position: relative;
|
|
3293
|
+
white-space: normal;
|
|
3253
3294
|
overflow-wrap: break-word;
|
|
3254
3295
|
word-wrap: break-word;
|
|
3255
3296
|
}
|
|
@@ -6221,7 +6262,6 @@ input[type=button].btn-block {
|
|
|
6221
6262
|
position: relative;
|
|
6222
6263
|
text-align: inherit;
|
|
6223
6264
|
transition: none;
|
|
6224
|
-
white-space: normal;
|
|
6225
6265
|
width: 100%;
|
|
6226
6266
|
overflow-wrap: break-word;
|
|
6227
6267
|
word-wrap: break-word;
|
|
@@ -6300,6 +6340,23 @@ input[type=button].btn-block {
|
|
|
6300
6340
|
margin-top: -0.5rem;
|
|
6301
6341
|
width: auto;
|
|
6302
6342
|
}
|
|
6343
|
+
.dropdown-item.autofit-row {
|
|
6344
|
+
padding-left: 1rem;
|
|
6345
|
+
padding-right: 1rem;
|
|
6346
|
+
}
|
|
6347
|
+
.dropdown-item.autofit-row > .autofit-col {
|
|
6348
|
+
padding-left: 0.25rem;
|
|
6349
|
+
padding-right: 0.25rem;
|
|
6350
|
+
}
|
|
6351
|
+
.dropdown-item .autofit-row {
|
|
6352
|
+
margin-left: 0.25rem;
|
|
6353
|
+
margin-right: 0.25rem;
|
|
6354
|
+
width: auto;
|
|
6355
|
+
}
|
|
6356
|
+
.dropdown-item .autofit-row > .autofit-col {
|
|
6357
|
+
padding-left: 0.25rem;
|
|
6358
|
+
padding-right: 0.25rem;
|
|
6359
|
+
}
|
|
6303
6360
|
.dropdown-item .c-kbd-inline {
|
|
6304
6361
|
line-height: 1.3125rem;
|
|
6305
6362
|
color: #a7a9bc;
|
|
@@ -6778,6 +6835,10 @@ input[type=button].btn-block {
|
|
|
6778
6835
|
}
|
|
6779
6836
|
}
|
|
6780
6837
|
|
|
6838
|
+
.dropdown-menu-width-shrink {
|
|
6839
|
+
min-width: 0;
|
|
6840
|
+
white-space: nowrap;
|
|
6841
|
+
}
|
|
6781
6842
|
.dropdown-menu-width-full {
|
|
6782
6843
|
left: 12px !important;
|
|
6783
6844
|
right: 12px !important;
|
|
@@ -9275,7 +9336,6 @@ label.custom-control-label {
|
|
|
9275
9336
|
padding-right: 0.25rem;
|
|
9276
9337
|
background-color: transparent;
|
|
9277
9338
|
}
|
|
9278
|
-
|
|
9279
9339
|
.date-picker-dropdown-menu {
|
|
9280
9340
|
max-height: none;
|
|
9281
9341
|
max-width: 368px;
|
|
@@ -10126,15 +10186,36 @@ label.custom-control-label {
|
|
|
10126
10186
|
.input-group .btn-unstyled {
|
|
10127
10187
|
color: inherit;
|
|
10128
10188
|
}
|
|
10129
|
-
|
|
10130
10189
|
.input-group-item {
|
|
10131
10190
|
display: flex;
|
|
10132
10191
|
flex-grow: 1;
|
|
10133
10192
|
flex-wrap: wrap;
|
|
10134
10193
|
margin-left: 0.5rem;
|
|
10135
10194
|
width: 1%;
|
|
10195
|
+
overflow-wrap: break-word;
|
|
10136
10196
|
word-wrap: break-word;
|
|
10137
10197
|
}
|
|
10198
|
+
.input-group-item.focus {
|
|
10199
|
+
border-radius: 0.25rem;
|
|
10200
|
+
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
10201
|
+
}
|
|
10202
|
+
.input-group-item.focus.input-group-prepend {
|
|
10203
|
+
border-bottom-right-radius: 0;
|
|
10204
|
+
border-top-right-radius: 0;
|
|
10205
|
+
z-index: 1;
|
|
10206
|
+
}
|
|
10207
|
+
.input-group-item.focus.input-group-append {
|
|
10208
|
+
border-bottom-left-radius: 0;
|
|
10209
|
+
border-top-left-radius: 0;
|
|
10210
|
+
}
|
|
10211
|
+
.input-group-item.focus > .form-control {
|
|
10212
|
+
background-color: #f0f5ff;
|
|
10213
|
+
border-color: #80acff;
|
|
10214
|
+
}
|
|
10215
|
+
.input-group-item.focus > .input-group-inset-item {
|
|
10216
|
+
background-color: #f0f5ff;
|
|
10217
|
+
border-color: #80acff;
|
|
10218
|
+
}
|
|
10138
10219
|
.input-group-item:first-child {
|
|
10139
10220
|
margin-left: 0;
|
|
10140
10221
|
}
|
|
@@ -10144,25 +10225,24 @@ label.custom-control-label {
|
|
|
10144
10225
|
.input-group-item > .dropdown {
|
|
10145
10226
|
display: flex;
|
|
10146
10227
|
flex-wrap: wrap;
|
|
10228
|
+
overflow-wrap: break-word;
|
|
10147
10229
|
word-wrap: break-word;
|
|
10148
10230
|
width: 100%;
|
|
10149
10231
|
}
|
|
10150
|
-
|
|
10151
10232
|
.input-group-item-shrink {
|
|
10152
10233
|
flex-grow: 0;
|
|
10153
10234
|
width: auto;
|
|
10154
10235
|
}
|
|
10155
|
-
|
|
10156
10236
|
.input-group-text {
|
|
10157
10237
|
align-items: center;
|
|
10158
10238
|
background-color: #e7e7ed;
|
|
10159
|
-
border-color: #e7e7ed;
|
|
10160
|
-
border-style: solid;
|
|
10161
10239
|
border-bottom-width: 0.0625rem;
|
|
10240
|
+
border-color: #e7e7ed;
|
|
10162
10241
|
border-left-width: 0.0625rem;
|
|
10242
|
+
border-radius: 0.25rem;
|
|
10163
10243
|
border-right-width: 0.0625rem;
|
|
10244
|
+
border-style: solid;
|
|
10164
10245
|
border-top-width: 0.0625rem;
|
|
10165
|
-
border-radius: 0.25rem;
|
|
10166
10246
|
color: #6b6c7e;
|
|
10167
10247
|
display: flex;
|
|
10168
10248
|
font-size: 1rem;
|
|
@@ -10182,18 +10262,19 @@ label.custom-control-label {
|
|
|
10182
10262
|
.input-group-text label {
|
|
10183
10263
|
color: #6b6c7e;
|
|
10184
10264
|
}
|
|
10185
|
-
.input-group-text
|
|
10186
|
-
|
|
10187
|
-
margin-top: 0;
|
|
10265
|
+
.input-group-text .custom-control {
|
|
10266
|
+
margin-bottom: 0;
|
|
10188
10267
|
}
|
|
10189
|
-
.input-group-text .custom-control,
|
|
10190
10268
|
.input-group-text .form-check {
|
|
10191
10269
|
margin-bottom: 0;
|
|
10192
10270
|
}
|
|
10271
|
+
.input-group-text .form-check input[type=radio],
|
|
10272
|
+
.input-group-text .form-check input[type=checkbox] {
|
|
10273
|
+
margin-top: 0;
|
|
10274
|
+
}
|
|
10193
10275
|
.input-group-text .lexicon-icon {
|
|
10194
10276
|
margin-top: 0;
|
|
10195
10277
|
}
|
|
10196
|
-
|
|
10197
10278
|
.input-group-text-secondary {
|
|
10198
10279
|
background-color: #fff;
|
|
10199
10280
|
border-color: #cdced9;
|
|
@@ -10204,7 +10285,6 @@ label.custom-control-label {
|
|
|
10204
10285
|
.input-group-text-secondary label {
|
|
10205
10286
|
color: #6b6c7e;
|
|
10206
10287
|
}
|
|
10207
|
-
|
|
10208
10288
|
@media (max-width: 575.98px) {
|
|
10209
10289
|
.input-group-stacked-sm-down > .input-group-item {
|
|
10210
10290
|
margin-bottom: 0.5rem;
|
|
@@ -10219,6 +10299,17 @@ label.custom-control-label {
|
|
|
10219
10299
|
|
|
10220
10300
|
.input-group-lg > .input-group-item > .btn {
|
|
10221
10301
|
font-size: 1.125rem;
|
|
10302
|
+
line-height: 1.5;
|
|
10303
|
+
padding-bottom: 0.59375rem;
|
|
10304
|
+
padding-left: 1.5rem;
|
|
10305
|
+
padding-right: 1.5rem;
|
|
10306
|
+
padding-top: 0.59375rem;
|
|
10307
|
+
}
|
|
10308
|
+
.input-group-lg > .input-group-item > .btn .c-inner {
|
|
10309
|
+
margin-bottom: -0.59375rem;
|
|
10310
|
+
margin-left: -1.5rem;
|
|
10311
|
+
margin-right: -1.5rem;
|
|
10312
|
+
margin-top: -0.59375rem;
|
|
10222
10313
|
}
|
|
10223
10314
|
.input-group-lg > .input-group-item > .btn .inline-item {
|
|
10224
10315
|
font-size: 1.125rem;
|
|
@@ -10231,7 +10322,17 @@ label.custom-control-label {
|
|
|
10231
10322
|
line-height: 1;
|
|
10232
10323
|
width: 3rem;
|
|
10233
10324
|
}
|
|
10234
|
-
.input-group-lg > .input-group-item > .form-control
|
|
10325
|
+
.input-group-lg > .input-group-item > .form-control {
|
|
10326
|
+
border-radius: 0.375rem;
|
|
10327
|
+
font-size: 1.125rem;
|
|
10328
|
+
height: auto;
|
|
10329
|
+
line-height: 1.5;
|
|
10330
|
+
min-height: 3rem;
|
|
10331
|
+
padding-bottom: 0.4375rem;
|
|
10332
|
+
padding-left: 1rem;
|
|
10333
|
+
padding-right: 1rem;
|
|
10334
|
+
padding-top: 0.4375rem;
|
|
10335
|
+
}
|
|
10235
10336
|
.input-group-lg > .input-group-item > .form-file .btn {
|
|
10236
10337
|
border-radius: 0.375rem;
|
|
10237
10338
|
font-size: 1.125rem;
|
|
@@ -10242,6 +10343,12 @@ label.custom-control-label {
|
|
|
10242
10343
|
padding-right: 1rem;
|
|
10243
10344
|
padding-top: 0.4375rem;
|
|
10244
10345
|
}
|
|
10346
|
+
.input-group-lg > .input-group-item > .form-file .btn .c-inner {
|
|
10347
|
+
margin-bottom: -0.4375rem;
|
|
10348
|
+
margin-left: -1rem;
|
|
10349
|
+
margin-right: -1rem;
|
|
10350
|
+
margin-top: -0.4375rem;
|
|
10351
|
+
}
|
|
10245
10352
|
.input-group-lg > .input-group-item > textarea.form-control,
|
|
10246
10353
|
.input-group-lg > .input-group-item > .form-control-textarea {
|
|
10247
10354
|
height: 120px;
|
|
@@ -10261,25 +10368,39 @@ label.custom-control-label {
|
|
|
10261
10368
|
padding-left: 1rem;
|
|
10262
10369
|
padding-right: 1rem;
|
|
10263
10370
|
}
|
|
10264
|
-
.input-group-lg > .input-group-item > .input-group-inset-item > .form-file {
|
|
10265
|
-
height: 75%;
|
|
10266
|
-
}
|
|
10267
10371
|
.input-group-lg > .input-group-item > .input-group-inset-item > .form-file .btn {
|
|
10268
|
-
|
|
10269
|
-
|
|
10270
|
-
|
|
10271
|
-
|
|
10272
|
-
padding-
|
|
10273
|
-
padding-
|
|
10372
|
+
border-radius: 0.375rem;
|
|
10373
|
+
font-size: 1.125rem;
|
|
10374
|
+
height: 3rem;
|
|
10375
|
+
line-height: 1.5;
|
|
10376
|
+
padding-bottom: 0.4375rem;
|
|
10377
|
+
padding-left: 1rem;
|
|
10378
|
+
padding-right: 1rem;
|
|
10379
|
+
padding-top: 0.4375rem;
|
|
10274
10380
|
}
|
|
10275
10381
|
.input-group-lg > .input-group-item > .input-group-inset-item > .form-file .btn .c-inner {
|
|
10382
|
+
margin-bottom: -0.4375rem;
|
|
10383
|
+
margin-left: -1rem;
|
|
10384
|
+
margin-right: -1rem;
|
|
10385
|
+
margin-top: -0.4375rem;
|
|
10386
|
+
}
|
|
10387
|
+
.input-group-lg > .input-group-item .form-control-inset {
|
|
10276
10388
|
margin-bottom: 0;
|
|
10277
|
-
margin-left: -0.75rem;
|
|
10278
|
-
margin-right: -0.75rem;
|
|
10279
10389
|
margin-top: 0;
|
|
10280
10390
|
}
|
|
10281
10391
|
.form-group-sm .input-group > .input-group-item > .btn, .input-group-sm > .input-group-item > .btn {
|
|
10282
10392
|
font-size: 0.875rem;
|
|
10393
|
+
line-height: 1.15;
|
|
10394
|
+
padding-bottom: 0.4375rem;
|
|
10395
|
+
padding-left: 0.75rem;
|
|
10396
|
+
padding-right: 0.75rem;
|
|
10397
|
+
padding-top: 0.4375rem;
|
|
10398
|
+
}
|
|
10399
|
+
.form-group-sm .input-group > .input-group-item > .btn .c-inner, .input-group-sm > .input-group-item > .btn .c-inner {
|
|
10400
|
+
margin-bottom: -0.4375rem;
|
|
10401
|
+
margin-left: -0.75rem;
|
|
10402
|
+
margin-right: -0.75rem;
|
|
10403
|
+
margin-top: -0.4375rem;
|
|
10283
10404
|
}
|
|
10284
10405
|
.form-group-sm .input-group > .input-group-item > .btn .btn-section, .input-group-sm > .input-group-item > .btn .btn-section {
|
|
10285
10406
|
font-size: 0.5625rem;
|
|
@@ -10289,30 +10410,49 @@ label.custom-control-label {
|
|
|
10289
10410
|
line-height: 1;
|
|
10290
10411
|
width: 2rem;
|
|
10291
10412
|
}
|
|
10292
|
-
.form-group-sm .input-group > .input-group-item > .form-control, .input-group-sm > .input-group-item > .form-control
|
|
10293
|
-
.form-group-sm .input-group > .input-group-item > .form-file .btn,
|
|
10294
|
-
.input-group-sm > .input-group-item > .form-file .btn {
|
|
10413
|
+
.form-group-sm .input-group > .input-group-item > .form-control, .input-group-sm > .input-group-item > .form-control {
|
|
10295
10414
|
border-radius: 0.25rem;
|
|
10296
10415
|
font-size: 0.875rem;
|
|
10297
|
-
height:
|
|
10416
|
+
height: auto;
|
|
10298
10417
|
line-height: 1.5;
|
|
10299
|
-
|
|
10418
|
+
min-height: 2rem;
|
|
10419
|
+
padding-bottom: 0;
|
|
10300
10420
|
padding-left: 0.75rem;
|
|
10301
10421
|
padding-right: 0.75rem;
|
|
10302
|
-
padding-top: 0
|
|
10422
|
+
padding-top: 0;
|
|
10303
10423
|
}
|
|
10304
|
-
.form-group-sm .input-group > .input-group-item > .form-control
|
|
10424
|
+
.form-group-sm .input-group > .input-group-item > .form-control .label, .input-group-sm > .input-group-item > .form-control .label {
|
|
10425
|
+
margin-bottom: 0.1875rem;
|
|
10426
|
+
margin-top: 0.1875rem;
|
|
10427
|
+
}
|
|
10428
|
+
.form-group-sm .input-group > .input-group-item > .form-file .btn, .input-group-sm > .input-group-item > .form-file .btn {
|
|
10429
|
+
border-radius: 0.25rem;
|
|
10305
10430
|
font-size: 0.875rem;
|
|
10306
10431
|
height: 2rem;
|
|
10307
10432
|
line-height: 1.5;
|
|
10308
10433
|
padding-bottom: 0.25rem;
|
|
10434
|
+
padding-left: 0.75rem;
|
|
10435
|
+
padding-right: 0.75rem;
|
|
10309
10436
|
padding-top: 0.25rem;
|
|
10310
10437
|
}
|
|
10438
|
+
.form-group-sm .input-group > .input-group-item > .form-file .btn .c-inner, .input-group-sm > .input-group-item > .form-file .btn .c-inner {
|
|
10439
|
+
margin-bottom: -0.25rem;
|
|
10440
|
+
margin-left: -0.75rem;
|
|
10441
|
+
margin-right: -0.75rem;
|
|
10442
|
+
margin-top: -0.25rem;
|
|
10443
|
+
}
|
|
10311
10444
|
.form-group-sm .input-group > .input-group-item > textarea.form-control, .input-group-sm > .input-group-item > textarea.form-control,
|
|
10312
10445
|
.form-group-sm .input-group > .input-group-item > .form-control-textarea,
|
|
10313
10446
|
.input-group-sm > .input-group-item > .form-control-textarea {
|
|
10314
10447
|
height: 80px;
|
|
10315
10448
|
}
|
|
10449
|
+
.form-group-sm .input-group > .input-group-item > .form-control-plaintext, .input-group-sm > .input-group-item > .form-control-plaintext {
|
|
10450
|
+
font-size: 0.875rem;
|
|
10451
|
+
height: 2rem;
|
|
10452
|
+
line-height: 1.5;
|
|
10453
|
+
padding-bottom: 0.25rem;
|
|
10454
|
+
padding-top: 0.25rem;
|
|
10455
|
+
}
|
|
10316
10456
|
.form-group-sm .input-group > .input-group-item > .input-group-text, .input-group-sm > .input-group-item > .input-group-text {
|
|
10317
10457
|
border-radius: 0.25rem;
|
|
10318
10458
|
font-size: 0.875rem;
|
|
@@ -10340,61 +10480,39 @@ label.custom-control-label {
|
|
|
10340
10480
|
margin-right: 0.25rem;
|
|
10341
10481
|
width: 1.5rem;
|
|
10342
10482
|
}
|
|
10343
|
-
.form-group-sm .input-group > .input-group-item > .input-group-inset-item > .form-file, .input-group-sm > .input-group-item > .input-group-inset-item > .form-file {
|
|
10344
|
-
height: 75%;
|
|
10345
|
-
}
|
|
10346
10483
|
.form-group-sm .input-group > .input-group-item > .input-group-inset-item > .form-file .btn, .input-group-sm > .input-group-item > .input-group-inset-item > .form-file .btn {
|
|
10347
|
-
height: 100%;
|
|
10348
|
-
line-height: 1;
|
|
10349
|
-
padding-bottom: 0;
|
|
10350
|
-
padding-left: 0.5rem;
|
|
10351
|
-
padding-right: 0.5rem;
|
|
10352
|
-
padding-top: 0;
|
|
10353
|
-
}
|
|
10354
|
-
.form-group-sm .input-group > .input-group-item > .input-group-inset-item > .form-file .btn .c-inner, .input-group-sm > .input-group-item > .input-group-inset-item > .form-file .btn .c-inner {
|
|
10355
|
-
margin-bottom: 0;
|
|
10356
|
-
margin-left: -0.5rem;
|
|
10357
|
-
margin-right: -0.5rem;
|
|
10358
|
-
margin-top: 0;
|
|
10359
|
-
}
|
|
10360
|
-
.input-group-item.focus {
|
|
10361
10484
|
border-radius: 0.25rem;
|
|
10362
|
-
|
|
10363
|
-
|
|
10364
|
-
|
|
10365
|
-
|
|
10366
|
-
|
|
10367
|
-
|
|
10368
|
-
|
|
10485
|
+
font-size: 0.875rem;
|
|
10486
|
+
height: 2rem;
|
|
10487
|
+
line-height: 1.5;
|
|
10488
|
+
padding-bottom: 0.25rem;
|
|
10489
|
+
padding-left: 0.75rem;
|
|
10490
|
+
padding-right: 0.75rem;
|
|
10491
|
+
padding-top: 0.25rem;
|
|
10369
10492
|
}
|
|
10370
|
-
|
|
10371
|
-
|
|
10372
|
-
|
|
10373
|
-
|
|
10374
|
-
|
|
10493
|
+
.form-group-sm .input-group > .input-group-item > .input-group-inset-item > .form-file .btn .c-inner, .input-group-sm > .input-group-item > .input-group-inset-item > .form-file .btn .c-inner {
|
|
10494
|
+
margin-bottom: -0.25rem;
|
|
10495
|
+
margin-left: -0.75rem;
|
|
10496
|
+
margin-right: -0.75rem;
|
|
10497
|
+
margin-top: -0.25rem;
|
|
10375
10498
|
}
|
|
10376
|
-
|
|
10377
|
-
|
|
10378
|
-
|
|
10379
|
-
border-top-left-radius: 0;
|
|
10499
|
+
.form-group-sm .input-group > .input-group-item .form-control-inset, .input-group-sm > .input-group-item .form-control-inset {
|
|
10500
|
+
margin-bottom: 0.125rem;
|
|
10501
|
+
margin-top: 0.1875rem;
|
|
10380
10502
|
}
|
|
10381
|
-
|
|
10382
10503
|
.input-group-inset {
|
|
10383
10504
|
flex-grow: 1;
|
|
10384
10505
|
order: 5;
|
|
10385
10506
|
width: 1%;
|
|
10386
10507
|
}
|
|
10387
|
-
.input-group-inset
|
|
10388
|
-
background-color: #fff;
|
|
10389
|
-
}
|
|
10390
|
-
.input-group-inset:focus {
|
|
10508
|
+
.input-group-inset:focus, .input-group-inset.focus {
|
|
10391
10509
|
box-shadow: none;
|
|
10392
10510
|
}
|
|
10393
|
-
.input-group-inset:focus ~ .input-group-inset-item {
|
|
10511
|
+
.input-group-inset:focus ~ .input-group-inset-item, .input-group-inset.focus ~ .input-group-inset-item {
|
|
10394
10512
|
background-color: #f0f5ff;
|
|
10395
10513
|
border-color: #80acff;
|
|
10396
10514
|
}
|
|
10397
|
-
.input-group-inset:disabled ~ .input-group-inset-item {
|
|
10515
|
+
.input-group-inset:disabled ~ .input-group-inset-item, .input-group-inset.disabled ~ .input-group-inset-item {
|
|
10398
10516
|
background-color: #f1f2f5;
|
|
10399
10517
|
border-color: #f1f2f5;
|
|
10400
10518
|
}
|
|
@@ -10402,6 +10520,9 @@ label.custom-control-label {
|
|
|
10402
10520
|
order: 13;
|
|
10403
10521
|
}
|
|
10404
10522
|
|
|
10523
|
+
.input-group-inset[readonly] ~ .input-group-inset-item {
|
|
10524
|
+
background-color: #fff;
|
|
10525
|
+
}
|
|
10405
10526
|
.input-group .input-group-inset-item {
|
|
10406
10527
|
align-items: center;
|
|
10407
10528
|
background-color: #f1f2f5;
|
|
@@ -12079,7 +12200,6 @@ label.custom-control-label {
|
|
|
12079
12200
|
margin-left: 0;
|
|
12080
12201
|
margin-right: 0;
|
|
12081
12202
|
}
|
|
12082
|
-
|
|
12083
12203
|
.nav-btn-monospaced {
|
|
12084
12204
|
padding: 0;
|
|
12085
12205
|
}
|
|
@@ -12101,6 +12221,7 @@ label.custom-control-label {
|
|
|
12101
12221
|
}
|
|
12102
12222
|
|
|
12103
12223
|
.nav-item {
|
|
12224
|
+
overflow-wrap: break-word;
|
|
12104
12225
|
word-wrap: break-word;
|
|
12105
12226
|
}
|
|
12106
12227
|
|
|
@@ -12123,13 +12244,6 @@ label.custom-control-label {
|
|
|
12123
12244
|
max-width: calc(100% - 24px);
|
|
12124
12245
|
}
|
|
12125
12246
|
|
|
12126
|
-
.nav-form {
|
|
12127
|
-
padding-bottom: 0.625rem;
|
|
12128
|
-
padding-left: 0.5rem;
|
|
12129
|
-
padding-right: 0.5rem;
|
|
12130
|
-
padding-top: 0.625rem;
|
|
12131
|
-
}
|
|
12132
|
-
|
|
12133
12247
|
.nav .nav-form {
|
|
12134
12248
|
padding-bottom: 0;
|
|
12135
12249
|
padding-left: 1rem;
|
|
@@ -12141,17 +12255,15 @@ label.custom-control-label {
|
|
|
12141
12255
|
flex: 1 1 auto;
|
|
12142
12256
|
text-align: center;
|
|
12143
12257
|
}
|
|
12144
|
-
|
|
12258
|
+
.nav-justified .nav-link {
|
|
12259
|
+
text-align: center;
|
|
12260
|
+
width: 100%;
|
|
12261
|
+
}
|
|
12145
12262
|
.nav-justified .nav-item {
|
|
12146
12263
|
flex-basis: 0;
|
|
12147
12264
|
flex-grow: 1;
|
|
12148
12265
|
text-align: center;
|
|
12149
12266
|
}
|
|
12150
|
-
.nav-justified button.nav-link {
|
|
12151
|
-
text-align: center;
|
|
12152
|
-
width: 100%;
|
|
12153
|
-
}
|
|
12154
|
-
|
|
12155
12267
|
.nav-stacked {
|
|
12156
12268
|
display: block;
|
|
12157
12269
|
}
|
|
@@ -12165,18 +12277,35 @@ label.custom-control-label {
|
|
|
12165
12277
|
.nav-unstyled {
|
|
12166
12278
|
flex-wrap: nowrap;
|
|
12167
12279
|
}
|
|
12168
|
-
.nav-unstyled .nav-btn {
|
|
12169
|
-
margin: 0 4px;
|
|
12170
|
-
padding: 0 4px;
|
|
12171
|
-
}
|
|
12172
12280
|
.nav-unstyled .nav-link {
|
|
12173
12281
|
line-height: 2rem;
|
|
12174
|
-
padding: 0
|
|
12282
|
+
padding-bottom: 0;
|
|
12283
|
+
padding-left: 4px;
|
|
12284
|
+
padding-right: 4px;
|
|
12285
|
+
padding-top: 0;
|
|
12286
|
+
}
|
|
12287
|
+
.nav-unstyled .nav-link > .c-inner {
|
|
12288
|
+
margin-bottom: 0;
|
|
12289
|
+
margin-left: -4px;
|
|
12290
|
+
margin-right: -4px;
|
|
12291
|
+
margin-top: 0;
|
|
12175
12292
|
}
|
|
12176
12293
|
.nav-unstyled .nav-link-monospaced {
|
|
12177
12294
|
margin: 0 4px;
|
|
12178
12295
|
}
|
|
12179
|
-
|
|
12296
|
+
.nav-unstyled .nav-btn {
|
|
12297
|
+
margin: 0 4px;
|
|
12298
|
+
padding-bottom: 0;
|
|
12299
|
+
padding-left: 4px;
|
|
12300
|
+
padding-right: 4px;
|
|
12301
|
+
padding-top: 0;
|
|
12302
|
+
}
|
|
12303
|
+
.nav-unstyled .nav-btn .c-inner {
|
|
12304
|
+
margin-bottom: 0;
|
|
12305
|
+
margin-left: -4px;
|
|
12306
|
+
margin-right: -4px;
|
|
12307
|
+
margin-top: 0;
|
|
12308
|
+
}
|
|
12180
12309
|
.nav-nested {
|
|
12181
12310
|
flex-direction: column;
|
|
12182
12311
|
flex-wrap: nowrap;
|
|
@@ -12284,9 +12413,6 @@ label.custom-control-label {
|
|
|
12284
12413
|
border-bottom: 0.0625rem solid transparent;
|
|
12285
12414
|
font-size: 0.875rem;
|
|
12286
12415
|
}
|
|
12287
|
-
.nav-tabs .nav-item {
|
|
12288
|
-
margin-bottom: -0.0625rem;
|
|
12289
|
-
}
|
|
12290
12416
|
.nav-tabs .nav-link {
|
|
12291
12417
|
border-color: transparent;
|
|
12292
12418
|
border-style: solid;
|
|
@@ -12319,8 +12445,8 @@ label.custom-control-label {
|
|
|
12319
12445
|
}
|
|
12320
12446
|
.nav-tabs .nav-link.active {
|
|
12321
12447
|
background-color: #fff;
|
|
12322
|
-
border-color: transparent transparent #fff;
|
|
12323
12448
|
color: #272833;
|
|
12449
|
+
border-color: transparent transparent #fff;
|
|
12324
12450
|
}
|
|
12325
12451
|
.nav-tabs .nav-link:disabled, .nav-tabs .nav-link.disabled {
|
|
12326
12452
|
background-color: transparent;
|
|
@@ -12328,19 +12454,20 @@ label.custom-control-label {
|
|
|
12328
12454
|
color: #a7a9bc;
|
|
12329
12455
|
box-shadow: none;
|
|
12330
12456
|
}
|
|
12457
|
+
.nav-tabs .nav-link:disabled:active, .nav-tabs .nav-link.disabled:active {
|
|
12458
|
+
box-shadow: none;
|
|
12459
|
+
}
|
|
12331
12460
|
.nav-tabs .nav-link[aria-expanded=true], .nav-tabs .nav-link.show {
|
|
12332
|
-
background-color:
|
|
12333
|
-
border-color: transparent transparent #fff;
|
|
12461
|
+
background-color: transparent;
|
|
12334
12462
|
color: #272833;
|
|
12463
|
+
border-color: transparent transparent transparent transparent;
|
|
12335
12464
|
}
|
|
12336
12465
|
.nav-tabs .nav-link > .c-inner {
|
|
12337
12466
|
margin-bottom: -0.28125rem;
|
|
12338
12467
|
margin-top: -0.28125rem;
|
|
12339
12468
|
}
|
|
12340
|
-
.nav-tabs .nav-item
|
|
12341
|
-
|
|
12342
|
-
border-color: transparent transparent transparent transparent;
|
|
12343
|
-
color: #272833;
|
|
12469
|
+
.nav-tabs .nav-item {
|
|
12470
|
+
margin-bottom: -0.0625rem;
|
|
12344
12471
|
}
|
|
12345
12472
|
.nav-tabs .dropdown-menu {
|
|
12346
12473
|
border-top-left-radius: 0;
|
|
@@ -12397,6 +12524,14 @@ label.custom-control-label {
|
|
|
12397
12524
|
transition: none;
|
|
12398
12525
|
}
|
|
12399
12526
|
}
|
|
12527
|
+
.nav-underline .nav-link::after {
|
|
12528
|
+
bottom: 0;
|
|
12529
|
+
display: block;
|
|
12530
|
+
position: absolute;
|
|
12531
|
+
left: 0;
|
|
12532
|
+
right: 0;
|
|
12533
|
+
width: auto;
|
|
12534
|
+
}
|
|
12400
12535
|
.nav-underline .nav-link:focus {
|
|
12401
12536
|
box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
|
|
12402
12537
|
outline: 0;
|
|
@@ -12404,6 +12539,11 @@ label.custom-control-label {
|
|
|
12404
12539
|
.nav-underline .nav-link.active {
|
|
12405
12540
|
color: #272833;
|
|
12406
12541
|
}
|
|
12542
|
+
.nav-underline .nav-link.active::after {
|
|
12543
|
+
background-color: #80acff;
|
|
12544
|
+
content: "";
|
|
12545
|
+
height: 0.125rem;
|
|
12546
|
+
}
|
|
12407
12547
|
.nav-underline .nav-link:disabled, .nav-underline .nav-link.disabled {
|
|
12408
12548
|
color: #a7a9bc;
|
|
12409
12549
|
box-shadow: none;
|
|
@@ -12411,29 +12551,14 @@ label.custom-control-label {
|
|
|
12411
12551
|
.nav-underline .nav-link[aria-expanded=true], .nav-underline .nav-link.show {
|
|
12412
12552
|
color: #272833;
|
|
12413
12553
|
}
|
|
12554
|
+
.nav-underline .nav-link[aria-expanded=true]::after, .nav-underline .nav-link.show::after {
|
|
12555
|
+
content: "";
|
|
12556
|
+
height: 0.125rem;
|
|
12557
|
+
}
|
|
12414
12558
|
.nav-underline .nav-link > .c-inner {
|
|
12415
12559
|
margin-bottom: -0.5625rem;
|
|
12416
12560
|
margin-top: -0.5625rem;
|
|
12417
12561
|
}
|
|
12418
|
-
.nav-underline .nav-item.show .nav-link {
|
|
12419
|
-
color: #272833;
|
|
12420
|
-
}
|
|
12421
|
-
.nav-underline .nav-link::after {
|
|
12422
|
-
bottom: 0;
|
|
12423
|
-
display: block;
|
|
12424
|
-
position: absolute;
|
|
12425
|
-
left: 0;
|
|
12426
|
-
right: 0;
|
|
12427
|
-
width: auto;
|
|
12428
|
-
}
|
|
12429
|
-
.nav-underline .nav-item .nav-link.active:after {
|
|
12430
|
-
background-color: #80acff;
|
|
12431
|
-
}
|
|
12432
|
-
.nav-underline .nav-link.active:after,
|
|
12433
|
-
.nav-underline .nav-item.show .nav-link:after {
|
|
12434
|
-
content: "";
|
|
12435
|
-
height: 0.125rem;
|
|
12436
|
-
}
|
|
12437
12562
|
.menubar {
|
|
12438
12563
|
position: relative;
|
|
12439
12564
|
}
|