@clayui/css 3.70.1 → 3.74.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 +162 -59
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +138 -57
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +103 -164
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/flags-es-AR.svg +13 -0
- package/lib/images/icons/flags-es-CO.svg +12 -0
- package/lib/images/icons/flags-es-MX.svg +13 -0
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/images/icons/flags-es-AR.svg +13 -0
- package/src/images/icons/flags-es-CO.svg +12 -0
- package/src/images/icons/flags-es-MX.svg +13 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_buttons.scss +1 -1
- package/src/scss/atlas/variables/_custom-forms.scss +57 -1
- package/src/scss/cadmin/components/_tables.scss +0 -8
- package/src/scss/cadmin/variables/_buttons.scss +44 -15
- package/src/scss/cadmin/variables/_custom-forms.scss +59 -2
- package/src/scss/components/_tables.scss +20 -12
- package/src/scss/functions/_global-functions.scss +1 -1
- package/src/scss/functions/_lx-icons-generated.scss +6 -0
- package/src/scss/mixins/_custom-forms.scss +246 -0
- package/src/scss/variables/_buttons.scss +29 -0
- package/src/scss/variables/_custom-forms.scss +35 -0
- package/src/scss/variables/_tables.scss +6 -0
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.74.0
|
|
4
4
|
*
|
|
5
5
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
6
6
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -1231,7 +1231,8 @@ button.collapse-icon .c-inner {
|
|
|
1231
1231
|
margin-top: -0.4375rem;
|
|
1232
1232
|
}
|
|
1233
1233
|
.btn .inline-item {
|
|
1234
|
-
|
|
1234
|
+
line-height: 1;
|
|
1235
|
+
margin-top: -3px;
|
|
1235
1236
|
}
|
|
1236
1237
|
.btn .inline-item .lexicon-icon {
|
|
1237
1238
|
margin-top: 0;
|
|
@@ -1253,6 +1254,32 @@ fieldset:disabled a.btn:active {
|
|
|
1253
1254
|
pointer-events: none;
|
|
1254
1255
|
}
|
|
1255
1256
|
|
|
1257
|
+
.btn-xs {
|
|
1258
|
+
font-size: 0.75rem;
|
|
1259
|
+
padding-bottom: 0.125rem;
|
|
1260
|
+
padding-left: 0.5rem;
|
|
1261
|
+
padding-right: 0.5rem;
|
|
1262
|
+
padding-top: 0.125rem;
|
|
1263
|
+
}
|
|
1264
|
+
.btn-xs .c-inner {
|
|
1265
|
+
margin-bottom: -0.125rem;
|
|
1266
|
+
margin-left: -0.5rem;
|
|
1267
|
+
margin-right: -0.5rem;
|
|
1268
|
+
margin-top: -0.125rem;
|
|
1269
|
+
}
|
|
1270
|
+
.btn-xs .inline-item {
|
|
1271
|
+
font-size: inherit;
|
|
1272
|
+
margin-top: -3px;
|
|
1273
|
+
}
|
|
1274
|
+
.btn-xs .inline-item-before {
|
|
1275
|
+
margin-right: 0.25rem;
|
|
1276
|
+
}
|
|
1277
|
+
.btn-xs .inline-item-after {
|
|
1278
|
+
margin-left: 0.25rem;
|
|
1279
|
+
}
|
|
1280
|
+
.btn-xs .btn-section {
|
|
1281
|
+
font-size: 0.375rem;
|
|
1282
|
+
}
|
|
1256
1283
|
.btn-group-lg > .btn,
|
|
1257
1284
|
.btn-group-lg .btn-group > .btn, .btn-lg {
|
|
1258
1285
|
border-radius: 0.25rem;
|
|
@@ -1334,6 +1361,10 @@ input[type=button].btn-block {
|
|
|
1334
1361
|
margin: 0;
|
|
1335
1362
|
max-width: none;
|
|
1336
1363
|
}
|
|
1364
|
+
.btn-monospaced.btn-xs {
|
|
1365
|
+
height: 1.5rem;
|
|
1366
|
+
width: 1.5rem;
|
|
1367
|
+
}
|
|
1337
1368
|
.btn-monospaced {
|
|
1338
1369
|
align-items: center;
|
|
1339
1370
|
display: inline-flex;
|
|
@@ -1368,6 +1399,9 @@ input[type=button].btn-block {
|
|
|
1368
1399
|
.btn-monospaced .lexicon-icon {
|
|
1369
1400
|
margin-top: 0;
|
|
1370
1401
|
}
|
|
1402
|
+
.btn-monospaced .inline-item {
|
|
1403
|
+
margin-top: 0;
|
|
1404
|
+
}
|
|
1371
1405
|
.btn-group-vertical > .btn-monospaced.btn-lg, .btn-group-lg .btn-monospaced, .btn-monospaced.btn-lg {
|
|
1372
1406
|
height: 3rem;
|
|
1373
1407
|
width: 3rem;
|
|
@@ -5797,6 +5831,9 @@ input[type=button].btn-block {
|
|
|
5797
5831
|
.form-check-card .custom-control .custom-control-input:checked ~ .card {
|
|
5798
5832
|
box-shadow: 0 0 0 2px #80acff;
|
|
5799
5833
|
}
|
|
5834
|
+
.form-check-card .custom-control .custom-control-input:checked ~ .card {
|
|
5835
|
+
box-shadow: 0 0 0 2px #80acff;
|
|
5836
|
+
}
|
|
5800
5837
|
.form-check-card .form-check-input:checked ~ .card {
|
|
5801
5838
|
box-shadow: 0 0 0 2px #80acff;
|
|
5802
5839
|
}
|
|
@@ -9021,7 +9058,7 @@ label.custom-control-label {
|
|
|
9021
9058
|
}
|
|
9022
9059
|
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
|
|
9023
9060
|
background-color: #f1f2f5;
|
|
9024
|
-
border-color:
|
|
9061
|
+
border-color: #e7e7ed;
|
|
9025
9062
|
box-shadow: none;
|
|
9026
9063
|
}
|
|
9027
9064
|
.custom-control-input:checked ~ .custom-control-label::before {
|
|
@@ -9029,6 +9066,21 @@ label.custom-control-label {
|
|
|
9029
9066
|
border-color: #0b5fff;
|
|
9030
9067
|
color: #fff;
|
|
9031
9068
|
}
|
|
9069
|
+
.custom-control-input[readonly] ~ .custom-control-label {
|
|
9070
|
+
color: #272833;
|
|
9071
|
+
}
|
|
9072
|
+
.custom-control-input[readonly] ~ .custom-control-label::before {
|
|
9073
|
+
background-color: #f1f2f5;
|
|
9074
|
+
border-color: #e7e7ed;
|
|
9075
|
+
}
|
|
9076
|
+
.custom-control-input[readonly][disabled] ~ .custom-control-label {
|
|
9077
|
+
color: #a7a9bc;
|
|
9078
|
+
}
|
|
9079
|
+
.custom-control-input:checked ~ .custom-control-label::before {
|
|
9080
|
+
background-color: #0b5fff;
|
|
9081
|
+
border-color: #0b5fff;
|
|
9082
|
+
color: #fff;
|
|
9083
|
+
}
|
|
9032
9084
|
.custom-control-input:checked:active ~ .custom-control-label::before {
|
|
9033
9085
|
background-color: #0b5fff;
|
|
9034
9086
|
border-color: #0b5fff;
|
|
@@ -9037,6 +9089,10 @@ label.custom-control-label {
|
|
|
9037
9089
|
background-color: #f1f2f5;
|
|
9038
9090
|
box-shadow: none;
|
|
9039
9091
|
}
|
|
9092
|
+
.custom-control-input:checked[readonly] ~ .custom-control-label::before {
|
|
9093
|
+
background-color: #fff;
|
|
9094
|
+
border-color: #cdced9;
|
|
9095
|
+
}
|
|
9040
9096
|
.custom-checkbox .custom-control-input ~ .custom-control-label::before {
|
|
9041
9097
|
border-radius: 0.125rem;
|
|
9042
9098
|
}
|
|
@@ -9044,10 +9100,27 @@ label.custom-control-label {
|
|
|
9044
9100
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline'%20d='M220.9%20377.2c-8%200-15.8-3.2-21.5-8.9l-91-91c-28.1-28.1%2014.8-71%2042.9-42.9l68.2%2068.2%20139.8-157.2c26.4-30%2072%2010.1%2045.6%2040.1L243.7%20366.9c-5.5%206.3-13.4%2010-21.8%2010.3h-1z'%20fill='%23fff'/%3E%3C/svg%3E");
|
|
9045
9101
|
background-size: 100%;
|
|
9046
9102
|
}
|
|
9103
|
+
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
|
|
9104
|
+
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline'%20d='M220.9%20377.2c-8%200-15.8-3.2-21.5-8.9l-91-91c-28.1-28.1%2014.8-71%2042.9-42.9l68.2%2068.2%20139.8-157.2c26.4-30%2072%2010.1%2045.6%2040.1L243.7%20366.9c-5.5%206.3-13.4%2010-21.8%2010.3h-1z'%20fill='%23fff'/%3E%3C/svg%3E");
|
|
9105
|
+
background-size: 100%;
|
|
9106
|
+
}
|
|
9047
9107
|
.custom-checkbox .custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-checkbox .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
9048
9108
|
background-color: #b3cdff;
|
|
9049
9109
|
border-color: #b3cdff;
|
|
9050
9110
|
}
|
|
9111
|
+
.custom-checkbox .custom-control-input:checked[readonly] ~ .custom-control-label::before {
|
|
9112
|
+
background-color: #fff;
|
|
9113
|
+
border-color: #cdced9;
|
|
9114
|
+
}
|
|
9115
|
+
.custom-checkbox .custom-control-input:checked[readonly] ~ .custom-control-label::after {
|
|
9116
|
+
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline'%20d='M220.9%20377.2c-8%200-15.8-3.2-21.5-8.9l-91-91c-28.1-28.1%2014.8-71%2042.9-42.9l68.2%2068.2%20139.8-157.2c26.4-30%2072%2010.1%2045.6%2040.1L243.7%20366.9c-5.5%206.3-13.4%2010-21.8%2010.3h-1z'%20fill='%236b6c7e'/%3E%3C/svg%3E");
|
|
9117
|
+
}
|
|
9118
|
+
.custom-checkbox .custom-control-input:checked[readonly][disabled] ~ .custom-control-label::before {
|
|
9119
|
+
opacity: 0.4;
|
|
9120
|
+
}
|
|
9121
|
+
.custom-checkbox .custom-control-input:checked[readonly][disabled] ~ .custom-control-label::after {
|
|
9122
|
+
opacity: 0.4;
|
|
9123
|
+
}
|
|
9051
9124
|
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
|
|
9052
9125
|
background-color: #0b5fff;
|
|
9053
9126
|
border-color: #0b5fff;
|
|
@@ -9060,6 +9133,19 @@ label.custom-control-label {
|
|
|
9060
9133
|
background-color: #b3cdff;
|
|
9061
9134
|
border-color: #b3cdff;
|
|
9062
9135
|
}
|
|
9136
|
+
.custom-checkbox .custom-control-input:indeterminate[readonly] ~ .custom-control-label::before {
|
|
9137
|
+
background-color: #fff;
|
|
9138
|
+
border-color: #cdced9;
|
|
9139
|
+
}
|
|
9140
|
+
.custom-checkbox .custom-control-input:indeterminate[readonly] ~ .custom-control-label::after {
|
|
9141
|
+
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline'%20d='M384%20288H128c-42.7%200-42.7-64%200-64h256c42.7%200%2042.7%2064%200%2064z'%20fill='%236b6c7e'/%3E%3C/svg%3E");
|
|
9142
|
+
}
|
|
9143
|
+
.custom-checkbox .custom-control-input:indeterminate[readonly][disabled] ~ .custom-control-label::before {
|
|
9144
|
+
opacity: 0.4;
|
|
9145
|
+
}
|
|
9146
|
+
.custom-checkbox .custom-control-input:indeterminate[readonly][disabled] ~ .custom-control-label::after {
|
|
9147
|
+
opacity: 0.4;
|
|
9148
|
+
}
|
|
9063
9149
|
.custom-radio .custom-control-input ~ .custom-control-label::before {
|
|
9064
9150
|
border-radius: 50%;
|
|
9065
9151
|
}
|
|
@@ -9070,6 +9156,10 @@ label.custom-control-label {
|
|
|
9070
9156
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Ccircle%20class='lexicon-icon-outline'%20cx='256'%20cy='256'%20r='256'%20fill='%23fff'/%3E%3C/svg%3E");
|
|
9071
9157
|
background-size: 50%;
|
|
9072
9158
|
}
|
|
9159
|
+
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
|
|
9160
|
+
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Ccircle%20class='lexicon-icon-outline'%20cx='256'%20cy='256'%20r='256'%20fill='%23fff'/%3E%3C/svg%3E");
|
|
9161
|
+
background-size: 50%;
|
|
9162
|
+
}
|
|
9073
9163
|
.custom-radio .custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-radio .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
9074
9164
|
background-color: #b3cdff;
|
|
9075
9165
|
border-color: #b3cdff;
|
|
@@ -19038,16 +19128,16 @@ caption {
|
|
|
19038
19128
|
.table-hover .table-disabled:hover td {
|
|
19039
19129
|
background-color: #fff;
|
|
19040
19130
|
}
|
|
19041
|
-
.table-primary,
|
|
19042
|
-
.table-primary > th,
|
|
19043
|
-
.table-primary > td {
|
|
19131
|
+
.table .table-primary,
|
|
19132
|
+
.table .table-primary > th,
|
|
19133
|
+
.table .table-primary > td {
|
|
19044
19134
|
background-color: #bbd2ff;
|
|
19045
19135
|
border-color: #80acff;
|
|
19046
19136
|
}
|
|
19047
|
-
.table-primary th,
|
|
19048
|
-
.table-primary td,
|
|
19049
|
-
.table-primary thead th,
|
|
19050
|
-
.table-primary tbody + tbody {
|
|
19137
|
+
.table .table-primary th,
|
|
19138
|
+
.table .table-primary td,
|
|
19139
|
+
.table .table-primary thead th,
|
|
19140
|
+
.table .table-primary tbody + tbody {
|
|
19051
19141
|
border-color: #80acff;
|
|
19052
19142
|
}
|
|
19053
19143
|
|
|
@@ -19059,16 +19149,16 @@ caption {
|
|
|
19059
19149
|
background-color: #a2c1ff;
|
|
19060
19150
|
}
|
|
19061
19151
|
|
|
19062
|
-
.table-secondary,
|
|
19063
|
-
.table-secondary > th,
|
|
19064
|
-
.table-secondary > td {
|
|
19152
|
+
.table .table-secondary,
|
|
19153
|
+
.table .table-secondary > th,
|
|
19154
|
+
.table .table-secondary > td {
|
|
19065
19155
|
background-color: #d6d6db;
|
|
19066
19156
|
border-color: #b2b3bc;
|
|
19067
19157
|
}
|
|
19068
|
-
.table-secondary th,
|
|
19069
|
-
.table-secondary td,
|
|
19070
|
-
.table-secondary thead th,
|
|
19071
|
-
.table-secondary tbody + tbody {
|
|
19158
|
+
.table .table-secondary th,
|
|
19159
|
+
.table .table-secondary td,
|
|
19160
|
+
.table .table-secondary thead th,
|
|
19161
|
+
.table .table-secondary tbody + tbody {
|
|
19072
19162
|
border-color: #b2b3bc;
|
|
19073
19163
|
}
|
|
19074
19164
|
|
|
@@ -19080,16 +19170,16 @@ caption {
|
|
|
19080
19170
|
background-color: #c8c8cf;
|
|
19081
19171
|
}
|
|
19082
19172
|
|
|
19083
|
-
.table-success,
|
|
19084
|
-
.table-success > th,
|
|
19085
|
-
.table-success > td {
|
|
19173
|
+
.table .table-success,
|
|
19174
|
+
.table .table-success > th,
|
|
19175
|
+
.table .table-success > td {
|
|
19086
19176
|
background-color: #c3dbc8;
|
|
19087
19177
|
border-color: #8fbb9a;
|
|
19088
19178
|
}
|
|
19089
|
-
.table-success th,
|
|
19090
|
-
.table-success td,
|
|
19091
|
-
.table-success thead th,
|
|
19092
|
-
.table-success tbody + tbody {
|
|
19179
|
+
.table .table-success th,
|
|
19180
|
+
.table .table-success td,
|
|
19181
|
+
.table .table-success thead th,
|
|
19182
|
+
.table .table-success tbody + tbody {
|
|
19093
19183
|
border-color: #8fbb9a;
|
|
19094
19184
|
}
|
|
19095
19185
|
|
|
@@ -19101,16 +19191,16 @@ caption {
|
|
|
19101
19191
|
background-color: #b3d1b9;
|
|
19102
19192
|
}
|
|
19103
19193
|
|
|
19104
|
-
.table-info,
|
|
19105
|
-
.table-info > th,
|
|
19106
|
-
.table-info > td {
|
|
19194
|
+
.table .table-info,
|
|
19195
|
+
.table .table-info > th,
|
|
19196
|
+
.table .table-info > td {
|
|
19107
19197
|
background-color: #c4d1e8;
|
|
19108
19198
|
border-color: #92a9d4;
|
|
19109
19199
|
}
|
|
19110
|
-
.table-info th,
|
|
19111
|
-
.table-info td,
|
|
19112
|
-
.table-info thead th,
|
|
19113
|
-
.table-info tbody + tbody {
|
|
19200
|
+
.table .table-info th,
|
|
19201
|
+
.table .table-info td,
|
|
19202
|
+
.table .table-info thead th,
|
|
19203
|
+
.table .table-info tbody + tbody {
|
|
19114
19204
|
border-color: #92a9d4;
|
|
19115
19205
|
}
|
|
19116
19206
|
|
|
@@ -19122,16 +19212,16 @@ caption {
|
|
|
19122
19212
|
background-color: #b2c3e1;
|
|
19123
19213
|
}
|
|
19124
19214
|
|
|
19125
|
-
.table-warning,
|
|
19126
|
-
.table-warning > th,
|
|
19127
|
-
.table-warning > td {
|
|
19215
|
+
.table .table-warning,
|
|
19216
|
+
.table .table-warning > th,
|
|
19217
|
+
.table .table-warning > td {
|
|
19128
19218
|
background-color: #ebceb8;
|
|
19129
19219
|
border-color: #dba47a;
|
|
19130
19220
|
}
|
|
19131
|
-
.table-warning th,
|
|
19132
|
-
.table-warning td,
|
|
19133
|
-
.table-warning thead th,
|
|
19134
|
-
.table-warning tbody + tbody {
|
|
19221
|
+
.table .table-warning th,
|
|
19222
|
+
.table .table-warning td,
|
|
19223
|
+
.table .table-warning thead th,
|
|
19224
|
+
.table .table-warning tbody + tbody {
|
|
19135
19225
|
border-color: #dba47a;
|
|
19136
19226
|
}
|
|
19137
19227
|
|
|
@@ -19143,16 +19233,16 @@ caption {
|
|
|
19143
19233
|
background-color: #e5c0a4;
|
|
19144
19234
|
}
|
|
19145
19235
|
|
|
19146
|
-
.table-danger,
|
|
19147
|
-
.table-danger > th,
|
|
19148
|
-
.table-danger > td {
|
|
19236
|
+
.table .table-danger,
|
|
19237
|
+
.table .table-danger > th,
|
|
19238
|
+
.table .table-danger > td {
|
|
19149
19239
|
background-color: #f5bdbd;
|
|
19150
19240
|
border-color: #ec8585;
|
|
19151
19241
|
}
|
|
19152
|
-
.table-danger th,
|
|
19153
|
-
.table-danger td,
|
|
19154
|
-
.table-danger thead th,
|
|
19155
|
-
.table-danger tbody + tbody {
|
|
19242
|
+
.table .table-danger th,
|
|
19243
|
+
.table .table-danger td,
|
|
19244
|
+
.table .table-danger thead th,
|
|
19245
|
+
.table .table-danger tbody + tbody {
|
|
19156
19246
|
border-color: #ec8585;
|
|
19157
19247
|
}
|
|
19158
19248
|
|
|
@@ -19164,16 +19254,16 @@ caption {
|
|
|
19164
19254
|
background-color: #f2a7a7;
|
|
19165
19255
|
}
|
|
19166
19256
|
|
|
19167
|
-
.table-light,
|
|
19168
|
-
.table-light > th,
|
|
19169
|
-
.table-light > td {
|
|
19257
|
+
.table .table-light,
|
|
19258
|
+
.table .table-light > th,
|
|
19259
|
+
.table .table-light > td {
|
|
19170
19260
|
background-color: #fbfbfc;
|
|
19171
19261
|
border-color: #f8f8fa;
|
|
19172
19262
|
}
|
|
19173
|
-
.table-light th,
|
|
19174
|
-
.table-light td,
|
|
19175
|
-
.table-light thead th,
|
|
19176
|
-
.table-light tbody + tbody {
|
|
19263
|
+
.table .table-light th,
|
|
19264
|
+
.table .table-light td,
|
|
19265
|
+
.table .table-light thead th,
|
|
19266
|
+
.table .table-light tbody + tbody {
|
|
19177
19267
|
border-color: #f8f8fa;
|
|
19178
19268
|
}
|
|
19179
19269
|
|
|
@@ -19185,16 +19275,29 @@ caption {
|
|
|
19185
19275
|
background-color: #ececf1;
|
|
19186
19276
|
}
|
|
19187
19277
|
|
|
19188
|
-
.table-dark,
|
|
19189
|
-
.table-dark > th,
|
|
19190
|
-
.table-dark > td {
|
|
19278
|
+
.table .table-dark,
|
|
19279
|
+
.table .table-dark > th,
|
|
19280
|
+
.table .table-dark > td {
|
|
19191
19281
|
background-color: #c3c3c6;
|
|
19192
19282
|
border-color: #8f8f95;
|
|
19193
19283
|
}
|
|
19194
|
-
.table-dark
|
|
19195
|
-
.table-dark
|
|
19196
|
-
.table-dark
|
|
19197
|
-
|
|
19284
|
+
.table .table-dark .table-title,
|
|
19285
|
+
.table .table-dark > th .table-title,
|
|
19286
|
+
.table .table-dark > td .table-title {
|
|
19287
|
+
color: #fff;
|
|
19288
|
+
}
|
|
19289
|
+
.table .table-dark .table-title[href],
|
|
19290
|
+
.table .table-dark .table-title [href],
|
|
19291
|
+
.table .table-dark > th .table-title[href],
|
|
19292
|
+
.table .table-dark > th .table-title [href],
|
|
19293
|
+
.table .table-dark > td .table-title[href],
|
|
19294
|
+
.table .table-dark > td .table-title [href] {
|
|
19295
|
+
color: inherit;
|
|
19296
|
+
}
|
|
19297
|
+
.table .table-dark th,
|
|
19298
|
+
.table .table-dark td,
|
|
19299
|
+
.table .table-dark thead th,
|
|
19300
|
+
.table .table-dark tbody + tbody {
|
|
19198
19301
|
border-color: #8f8f95;
|
|
19199
19302
|
}
|
|
19200
19303
|
|