@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/cadmin.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>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
* SPDX-License-Identifier: LicenseRef-MIT-Bootstrap
|
|
17
17
|
*/
|
|
18
18
|
/**
|
|
19
|
-
* Clay 3.
|
|
19
|
+
* Clay 3.74.0
|
|
20
20
|
*
|
|
21
21
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
22
22
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -956,6 +956,8 @@ html:not(#__):not(#___) .cadmin .btn .c-inner {
|
|
|
956
956
|
}
|
|
957
957
|
html:not(#__):not(#___) .cadmin .btn .inline-item {
|
|
958
958
|
font-size: 16px;
|
|
959
|
+
line-height: 1;
|
|
960
|
+
margin-top: -3px;
|
|
959
961
|
}
|
|
960
962
|
html:not(#__):not(#___) .cadmin .btn .inline-item .lexicon-icon {
|
|
961
963
|
margin-top: 0;
|
|
@@ -976,6 +978,32 @@ html:not(#__):not(#___) .cadmin fieldset:disabled a.btn:focus {
|
|
|
976
978
|
html:not(#__):not(#___) .cadmin fieldset:disabled a.btn:active {
|
|
977
979
|
pointer-events: none;
|
|
978
980
|
}
|
|
981
|
+
html:not(#__):not(#___) .cadmin .btn-xs {
|
|
982
|
+
font-size: 0.75rem;
|
|
983
|
+
padding-bottom: 0.125rem;
|
|
984
|
+
padding-left: 0.5rem;
|
|
985
|
+
padding-right: 0.5rem;
|
|
986
|
+
padding-top: 0.125rem;
|
|
987
|
+
}
|
|
988
|
+
html:not(#__):not(#___) .cadmin .btn-xs .c-inner {
|
|
989
|
+
margin-bottom: -0.125rem;
|
|
990
|
+
margin-left: -0.5rem;
|
|
991
|
+
margin-right: -0.5rem;
|
|
992
|
+
margin-top: -0.125rem;
|
|
993
|
+
}
|
|
994
|
+
html:not(#__):not(#___) .cadmin .btn-xs .inline-item {
|
|
995
|
+
font-size: inherit;
|
|
996
|
+
margin-top: -3px;
|
|
997
|
+
}
|
|
998
|
+
html:not(#__):not(#___) .cadmin .btn-xs .inline-item-before {
|
|
999
|
+
margin-right: 0.25rem;
|
|
1000
|
+
}
|
|
1001
|
+
html:not(#__):not(#___) .cadmin .btn-xs .inline-item-after {
|
|
1002
|
+
margin-left: 0.25rem;
|
|
1003
|
+
}
|
|
1004
|
+
html:not(#__):not(#___) .cadmin .btn-xs .btn-section {
|
|
1005
|
+
font-size: 0.375rem;
|
|
1006
|
+
}
|
|
979
1007
|
html:not(#__):not(#___) .cadmin .btn-group-lg > .btn,
|
|
980
1008
|
html:not(#__):not(#___) .cadmin .btn-group-lg .btn-group > .btn, html:not(#__):not(#___) .cadmin .btn-lg {
|
|
981
1009
|
border-radius: 4px;
|
|
@@ -1051,6 +1079,10 @@ html:not(#__):not(#___) .cadmin .menubar-toggler .c-inner, html:not(#__):not(#__
|
|
|
1051
1079
|
margin: 0;
|
|
1052
1080
|
max-width: none;
|
|
1053
1081
|
}
|
|
1082
|
+
html:not(#__):not(#___) .cadmin .btn-monospaced.btn-xs {
|
|
1083
|
+
height: 1.5rem;
|
|
1084
|
+
width: 1.4rem;
|
|
1085
|
+
}
|
|
1054
1086
|
html:not(#__):not(#___) .cadmin .btn-monospaced {
|
|
1055
1087
|
align-items: center;
|
|
1056
1088
|
display: inline-flex;
|
|
@@ -1085,6 +1117,9 @@ html:not(#__):not(#___) .cadmin .btn-monospaced .c-inner {
|
|
|
1085
1117
|
html:not(#__):not(#___) .cadmin .btn-monospaced .lexicon-icon {
|
|
1086
1118
|
margin-top: 0;
|
|
1087
1119
|
}
|
|
1120
|
+
html:not(#__):not(#___) .cadmin .btn-monospaced .inline-item {
|
|
1121
|
+
margin-top: 0;
|
|
1122
|
+
}
|
|
1088
1123
|
html:not(#__):not(#___) .cadmin .btn-group-vertical > .btn-monospaced.btn-lg, html:not(#__):not(#___) .cadmin .btn-group-lg .btn-monospaced, html:not(#__):not(#___) .cadmin .btn-monospaced.btn-lg {
|
|
1089
1124
|
height: 48px;
|
|
1090
1125
|
width: 48px;
|
|
@@ -1095,7 +1130,7 @@ html:not(#__):not(#___) .cadmin .btn-group-vertical > .btn-monospaced.btn-sm, ht
|
|
|
1095
1130
|
}
|
|
1096
1131
|
html:not(#__):not(#___) .cadmin .btn-primary {
|
|
1097
1132
|
background-color: #0b5fff;
|
|
1098
|
-
border-color:
|
|
1133
|
+
border-color: transparent;
|
|
1099
1134
|
color: #fff;
|
|
1100
1135
|
}
|
|
1101
1136
|
html:not(#__):not(#___) .cadmin .btn-primary:hover {
|
|
@@ -1105,7 +1140,7 @@ html:not(#__):not(#___) .cadmin .btn-primary:hover {
|
|
|
1105
1140
|
}
|
|
1106
1141
|
html:not(#__):not(#___) .cadmin .btn-primary:focus, html:not(#__):not(#___) .cadmin .focus.btn-primary {
|
|
1107
1142
|
background-color: #0053f0;
|
|
1108
|
-
border-color:
|
|
1143
|
+
border-color: transparent;
|
|
1109
1144
|
color: #fff;
|
|
1110
1145
|
}
|
|
1111
1146
|
html:not(#__):not(#___) .cadmin .btn-primary:active {
|
|
@@ -1120,7 +1155,7 @@ html:not(#__):not(#___) .cadmin .active.btn-primary {
|
|
|
1120
1155
|
}
|
|
1121
1156
|
html:not(#__):not(#___) .cadmin .btn-primary:disabled, html:not(#__):not(#___) .cadmin .disabled.btn-primary {
|
|
1122
1157
|
background-color: #0b5fff;
|
|
1123
|
-
border-color:
|
|
1158
|
+
border-color: transparent;
|
|
1124
1159
|
color: #fff;
|
|
1125
1160
|
}
|
|
1126
1161
|
html:not(#__):not(#___) .cadmin [aria-expanded=true].btn-primary, html:not(#__):not(#___) .cadmin .show.btn-primary {
|
|
@@ -1130,7 +1165,7 @@ html:not(#__):not(#___) .cadmin [aria-expanded=true].btn-primary, html:not(#__):
|
|
|
1130
1165
|
}
|
|
1131
1166
|
html:not(#__):not(#___) .cadmin .form-file-input:focus + .btn-primary {
|
|
1132
1167
|
background-color: #0053f0;
|
|
1133
|
-
border-color:
|
|
1168
|
+
border-color: transparent;
|
|
1134
1169
|
color: #fff;
|
|
1135
1170
|
}
|
|
1136
1171
|
html:not(#__):not(#___) .cadmin .btn-secondary {
|
|
@@ -1175,7 +1210,7 @@ html:not(#__):not(#___) .cadmin .form-file-input:focus + .btn-secondary {
|
|
|
1175
1210
|
}
|
|
1176
1211
|
html:not(#__):not(#___) .cadmin .btn-success {
|
|
1177
1212
|
background-color: #287d3c;
|
|
1178
|
-
border-color:
|
|
1213
|
+
border-color: transparent;
|
|
1179
1214
|
color: #fff;
|
|
1180
1215
|
}
|
|
1181
1216
|
html:not(#__):not(#___) .cadmin .btn-success:hover {
|
|
@@ -1200,7 +1235,7 @@ html:not(#__):not(#___) .cadmin .active.btn-success {
|
|
|
1200
1235
|
}
|
|
1201
1236
|
html:not(#__):not(#___) .cadmin .btn-success:disabled, html:not(#__):not(#___) .cadmin .disabled.btn-success {
|
|
1202
1237
|
background-color: #287d3c;
|
|
1203
|
-
border-color:
|
|
1238
|
+
border-color: transparent;
|
|
1204
1239
|
color: #fff;
|
|
1205
1240
|
}
|
|
1206
1241
|
html:not(#__):not(#___) .cadmin [aria-expanded=true].btn-success, html:not(#__):not(#___) .cadmin .show.btn-success {
|
|
@@ -1215,7 +1250,7 @@ html:not(#__):not(#___) .cadmin .form-file-input:focus + .btn-success {
|
|
|
1215
1250
|
}
|
|
1216
1251
|
html:not(#__):not(#___) .cadmin .btn-info {
|
|
1217
1252
|
background-color: #2e5aac;
|
|
1218
|
-
border-color:
|
|
1253
|
+
border-color: transparent;
|
|
1219
1254
|
color: #fff;
|
|
1220
1255
|
}
|
|
1221
1256
|
html:not(#__):not(#___) .cadmin .btn-info:hover {
|
|
@@ -1240,7 +1275,7 @@ html:not(#__):not(#___) .cadmin .active.btn-info {
|
|
|
1240
1275
|
}
|
|
1241
1276
|
html:not(#__):not(#___) .cadmin .btn-info:disabled, html:not(#__):not(#___) .cadmin .disabled.btn-info {
|
|
1242
1277
|
background-color: #2e5aac;
|
|
1243
|
-
border-color:
|
|
1278
|
+
border-color: transparent;
|
|
1244
1279
|
color: #fff;
|
|
1245
1280
|
}
|
|
1246
1281
|
html:not(#__):not(#___) .cadmin [aria-expanded=true].btn-info, html:not(#__):not(#___) .cadmin .show.btn-info {
|
|
@@ -1250,7 +1285,7 @@ html:not(#__):not(#___) .cadmin [aria-expanded=true].btn-info, html:not(#__):not
|
|
|
1250
1285
|
}
|
|
1251
1286
|
html:not(#__):not(#___) .cadmin .btn-warning {
|
|
1252
1287
|
background-color: #b95000;
|
|
1253
|
-
border-color:
|
|
1288
|
+
border-color: transparent;
|
|
1254
1289
|
color: #fff;
|
|
1255
1290
|
}
|
|
1256
1291
|
html:not(#__):not(#___) .cadmin .btn-warning:hover {
|
|
@@ -1275,7 +1310,7 @@ html:not(#__):not(#___) .cadmin .active.btn-warning {
|
|
|
1275
1310
|
}
|
|
1276
1311
|
html:not(#__):not(#___) .cadmin .btn-warning:disabled, html:not(#__):not(#___) .cadmin .disabled.btn-warning {
|
|
1277
1312
|
background-color: #b95000;
|
|
1278
|
-
border-color:
|
|
1313
|
+
border-color: transparent;
|
|
1279
1314
|
color: #fff;
|
|
1280
1315
|
}
|
|
1281
1316
|
html:not(#__):not(#___) .cadmin [aria-expanded=true].btn-warning, html:not(#__):not(#___) .cadmin .show.btn-warning {
|
|
@@ -1290,7 +1325,7 @@ html:not(#__):not(#___) .cadmin .form-file-input:focus + .btn-warning {
|
|
|
1290
1325
|
}
|
|
1291
1326
|
html:not(#__):not(#___) .cadmin .btn-danger {
|
|
1292
1327
|
background-color: #da1414;
|
|
1293
|
-
border-color:
|
|
1328
|
+
border-color: transparent;
|
|
1294
1329
|
color: #fff;
|
|
1295
1330
|
}
|
|
1296
1331
|
html:not(#__):not(#___) .cadmin .btn-danger:hover {
|
|
@@ -1315,7 +1350,7 @@ html:not(#__):not(#___) .cadmin .active.btn-danger {
|
|
|
1315
1350
|
}
|
|
1316
1351
|
html:not(#__):not(#___) .cadmin .btn-danger:disabled, html:not(#__):not(#___) .cadmin .disabled.btn-danger {
|
|
1317
1352
|
background-color: #da1414;
|
|
1318
|
-
border-color:
|
|
1353
|
+
border-color: transparent;
|
|
1319
1354
|
color: #fff;
|
|
1320
1355
|
}
|
|
1321
1356
|
html:not(#__):not(#___) .cadmin [aria-expanded=true].btn-danger, html:not(#__):not(#___) .cadmin .show.btn-danger {
|
|
@@ -1330,7 +1365,7 @@ html:not(#__):not(#___) .cadmin .form-file-input:focus + .btn-danger {
|
|
|
1330
1365
|
}
|
|
1331
1366
|
html:not(#__):not(#___) .cadmin .btn-light {
|
|
1332
1367
|
background-color: #f1f2f5;
|
|
1333
|
-
border-color:
|
|
1368
|
+
border-color: transparent;
|
|
1334
1369
|
color: #272833;
|
|
1335
1370
|
}
|
|
1336
1371
|
html:not(#__):not(#___) .cadmin .btn-light:hover {
|
|
@@ -1355,7 +1390,7 @@ html:not(#__):not(#___) .cadmin .active.btn-light {
|
|
|
1355
1390
|
}
|
|
1356
1391
|
html:not(#__):not(#___) .cadmin .btn-light:disabled, html:not(#__):not(#___) .cadmin .disabled.btn-light {
|
|
1357
1392
|
background-color: #f1f2f5;
|
|
1358
|
-
border-color:
|
|
1393
|
+
border-color: transparent;
|
|
1359
1394
|
color: #272833;
|
|
1360
1395
|
}
|
|
1361
1396
|
html:not(#__):not(#___) .cadmin [aria-expanded=true].btn-light, html:not(#__):not(#___) .cadmin .show.btn-light {
|
|
@@ -1370,7 +1405,7 @@ html:not(#__):not(#___) .cadmin .form-file-input:focus + .btn-light {
|
|
|
1370
1405
|
}
|
|
1371
1406
|
html:not(#__):not(#___) .cadmin .btn-dark {
|
|
1372
1407
|
background-color: #272833;
|
|
1373
|
-
border-color:
|
|
1408
|
+
border-color: transparent;
|
|
1374
1409
|
color: #fff;
|
|
1375
1410
|
}
|
|
1376
1411
|
html:not(#__):not(#___) .cadmin .btn-dark:hover {
|
|
@@ -1395,7 +1430,7 @@ html:not(#__):not(#___) .cadmin .active.btn-dark {
|
|
|
1395
1430
|
}
|
|
1396
1431
|
html:not(#__):not(#___) .cadmin .btn-dark:disabled, html:not(#__):not(#___) .cadmin .disabled.btn-dark {
|
|
1397
1432
|
background-color: #272833;
|
|
1398
|
-
border-color:
|
|
1433
|
+
border-color: transparent;
|
|
1399
1434
|
color: #fff;
|
|
1400
1435
|
}
|
|
1401
1436
|
html:not(#__):not(#___) .cadmin [aria-expanded=true].btn-dark, html:not(#__):not(#___) .cadmin .show.btn-dark {
|
|
@@ -7937,7 +7972,7 @@ html:not(#__):not(#___) .cadmin .custom-control-input[disabled] ~ .custom-contro
|
|
|
7937
7972
|
}
|
|
7938
7973
|
html:not(#__):not(#___) .cadmin .custom-control-input[disabled] ~ .custom-control-label::before, html:not(#__):not(#___) .cadmin .custom-control-input:disabled ~ .custom-control-label::before {
|
|
7939
7974
|
background-color: #f1f2f5;
|
|
7940
|
-
border-color: #
|
|
7975
|
+
border-color: #e7e7ed;
|
|
7941
7976
|
box-shadow: none;
|
|
7942
7977
|
}
|
|
7943
7978
|
html:not(#__):not(#___) .cadmin .custom-control-input:checked ~ .custom-control-label::before {
|
|
@@ -7945,6 +7980,21 @@ html:not(#__):not(#___) .cadmin .custom-control-input:checked ~ .custom-control-
|
|
|
7945
7980
|
border-color: #0b5fff;
|
|
7946
7981
|
color: #fff;
|
|
7947
7982
|
}
|
|
7983
|
+
html:not(#__):not(#___) .cadmin .custom-control-input[readonly] ~ .custom-control-label {
|
|
7984
|
+
color: #272833;
|
|
7985
|
+
}
|
|
7986
|
+
html:not(#__):not(#___) .cadmin .custom-control-input[readonly] ~ .custom-control-label::before {
|
|
7987
|
+
background-color: #f1f2f5;
|
|
7988
|
+
border-color: #e7e7ed;
|
|
7989
|
+
}
|
|
7990
|
+
html:not(#__):not(#___) .cadmin .custom-control-input[readonly][disabled] ~ .custom-control-label {
|
|
7991
|
+
color: #a7a9bc;
|
|
7992
|
+
}
|
|
7993
|
+
html:not(#__):not(#___) .cadmin .custom-control-input:checked ~ .custom-control-label::before {
|
|
7994
|
+
background-color: #0b5fff;
|
|
7995
|
+
border-color: #0b5fff;
|
|
7996
|
+
color: #fff;
|
|
7997
|
+
}
|
|
7948
7998
|
html:not(#__):not(#___) .cadmin .custom-control-input:checked:active ~ .custom-control-label::before {
|
|
7949
7999
|
background-color: #0b5fff;
|
|
7950
8000
|
border-color: #0b5fff;
|
|
@@ -7960,13 +8010,29 @@ html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:checked ~
|
|
|
7960
8010
|
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");
|
|
7961
8011
|
background-size: 100%;
|
|
7962
8012
|
}
|
|
8013
|
+
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
|
|
8014
|
+
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");
|
|
8015
|
+
background-size: 100%;
|
|
8016
|
+
}
|
|
7963
8017
|
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:checked[disabled] ~ .custom-control-label::before, html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
7964
8018
|
background-color: #b3cdff;
|
|
7965
8019
|
}
|
|
8020
|
+
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:checked[readonly] ~ .custom-control-label::before {
|
|
8021
|
+
background-color: #fff;
|
|
8022
|
+
border-color: #cdced9;
|
|
8023
|
+
}
|
|
8024
|
+
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:checked[readonly] ~ .custom-control-label::after {
|
|
8025
|
+
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");
|
|
8026
|
+
}
|
|
8027
|
+
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:checked[readonly][disabled] ~ .custom-control-label::before {
|
|
8028
|
+
opacity: 0.4;
|
|
8029
|
+
}
|
|
8030
|
+
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:checked[readonly][disabled] ~ .custom-control-label::after {
|
|
8031
|
+
opacity: 0.4;
|
|
8032
|
+
}
|
|
7966
8033
|
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
|
|
7967
8034
|
background-color: #0b5fff;
|
|
7968
8035
|
border-color: #0b5fff;
|
|
7969
|
-
box-shadow: none;
|
|
7970
8036
|
}
|
|
7971
8037
|
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
|
|
7972
8038
|
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='%23fff'/%3E%3C/svg%3E");
|
|
@@ -7976,6 +8042,19 @@ html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:indetermi
|
|
|
7976
8042
|
background-color: #b3cdff;
|
|
7977
8043
|
border-color: #b3cdff;
|
|
7978
8044
|
}
|
|
8045
|
+
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:indeterminate[readonly] ~ .custom-control-label::before {
|
|
8046
|
+
background-color: #fff;
|
|
8047
|
+
border-color: #cdced9;
|
|
8048
|
+
}
|
|
8049
|
+
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:indeterminate[readonly] ~ .custom-control-label::after {
|
|
8050
|
+
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");
|
|
8051
|
+
}
|
|
8052
|
+
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:indeterminate[readonly][disabled] ~ .custom-control-label::before {
|
|
8053
|
+
opacity: 0.4;
|
|
8054
|
+
}
|
|
8055
|
+
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:indeterminate[readonly][disabled] ~ .custom-control-label::after {
|
|
8056
|
+
opacity: 0.4;
|
|
8057
|
+
}
|
|
7979
8058
|
html:not(#__):not(#___) .cadmin .custom-radio .custom-control-input ~ .custom-control-label::before {
|
|
7980
8059
|
border-radius: 50%;
|
|
7981
8060
|
}
|
|
@@ -7986,6 +8065,10 @@ html:not(#__):not(#___) .cadmin .custom-radio .custom-control-input:checked ~ .c
|
|
|
7986
8065
|
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");
|
|
7987
8066
|
background-size: 50%;
|
|
7988
8067
|
}
|
|
8068
|
+
html:not(#__):not(#___) .cadmin .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
|
|
8069
|
+
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");
|
|
8070
|
+
background-size: 50%;
|
|
8071
|
+
}
|
|
7989
8072
|
html:not(#__):not(#___) .cadmin .custom-radio .custom-control-input:checked[disabled] ~ .custom-control-label::before, html:not(#__):not(#___) .cadmin .custom-radio .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
7990
8073
|
background-color: #b3cdff;
|
|
7991
8074
|
border-color: #b3cdff;
|
|
@@ -15955,150 +16038,6 @@ html:not(#__):not(#___) .cadmin .table-hover .table-disabled:hover th,
|
|
|
15955
16038
|
html:not(#__):not(#___) .cadmin .table-hover .table-disabled:hover td {
|
|
15956
16039
|
background-color: #fff;
|
|
15957
16040
|
}
|
|
15958
|
-
html:not(#__):not(#___) .cadmin .table-primary,
|
|
15959
|
-
html:not(#__):not(#___) .cadmin .table-primary > th,
|
|
15960
|
-
html:not(#__):not(#___) .cadmin .table-primary > td {
|
|
15961
|
-
background-color: #bbd2ff;
|
|
15962
|
-
}
|
|
15963
|
-
html:not(#__):not(#___) .cadmin .table-primary th,
|
|
15964
|
-
html:not(#__):not(#___) .cadmin .table-primary td,
|
|
15965
|
-
html:not(#__):not(#___) .cadmin .table-primary thead th,
|
|
15966
|
-
html:not(#__):not(#___) .cadmin .table-primary tbody + tbody {
|
|
15967
|
-
border-color: #80acff;
|
|
15968
|
-
}
|
|
15969
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-primary:hover {
|
|
15970
|
-
background-color: #a2c1ff;
|
|
15971
|
-
}
|
|
15972
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-primary:hover > td,
|
|
15973
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-primary:hover > th {
|
|
15974
|
-
background-color: #a2c1ff;
|
|
15975
|
-
}
|
|
15976
|
-
html:not(#__):not(#___) .cadmin .table-secondary,
|
|
15977
|
-
html:not(#__):not(#___) .cadmin .table-secondary > th,
|
|
15978
|
-
html:not(#__):not(#___) .cadmin .table-secondary > td {
|
|
15979
|
-
background-color: #d6d6db;
|
|
15980
|
-
}
|
|
15981
|
-
html:not(#__):not(#___) .cadmin .table-secondary th,
|
|
15982
|
-
html:not(#__):not(#___) .cadmin .table-secondary td,
|
|
15983
|
-
html:not(#__):not(#___) .cadmin .table-secondary thead th,
|
|
15984
|
-
html:not(#__):not(#___) .cadmin .table-secondary tbody + tbody {
|
|
15985
|
-
border-color: #b2b3bc;
|
|
15986
|
-
}
|
|
15987
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-secondary:hover {
|
|
15988
|
-
background-color: #c8c8cf;
|
|
15989
|
-
}
|
|
15990
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-secondary:hover > td,
|
|
15991
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-secondary:hover > th {
|
|
15992
|
-
background-color: #c8c8cf;
|
|
15993
|
-
}
|
|
15994
|
-
html:not(#__):not(#___) .cadmin .table-success,
|
|
15995
|
-
html:not(#__):not(#___) .cadmin .table-success > th,
|
|
15996
|
-
html:not(#__):not(#___) .cadmin .table-success > td {
|
|
15997
|
-
background-color: #c3dbc8;
|
|
15998
|
-
}
|
|
15999
|
-
html:not(#__):not(#___) .cadmin .table-success th,
|
|
16000
|
-
html:not(#__):not(#___) .cadmin .table-success td,
|
|
16001
|
-
html:not(#__):not(#___) .cadmin .table-success thead th,
|
|
16002
|
-
html:not(#__):not(#___) .cadmin .table-success tbody + tbody {
|
|
16003
|
-
border-color: #8fbb9a;
|
|
16004
|
-
}
|
|
16005
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-success:hover {
|
|
16006
|
-
background-color: #b3d1b9;
|
|
16007
|
-
}
|
|
16008
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-success:hover > td,
|
|
16009
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-success:hover > th {
|
|
16010
|
-
background-color: #b3d1b9;
|
|
16011
|
-
}
|
|
16012
|
-
html:not(#__):not(#___) .cadmin .table-info,
|
|
16013
|
-
html:not(#__):not(#___) .cadmin .table-info > th,
|
|
16014
|
-
html:not(#__):not(#___) .cadmin .table-info > td {
|
|
16015
|
-
background-color: #c4d1e8;
|
|
16016
|
-
}
|
|
16017
|
-
html:not(#__):not(#___) .cadmin .table-info th,
|
|
16018
|
-
html:not(#__):not(#___) .cadmin .table-info td,
|
|
16019
|
-
html:not(#__):not(#___) .cadmin .table-info thead th,
|
|
16020
|
-
html:not(#__):not(#___) .cadmin .table-info tbody + tbody {
|
|
16021
|
-
border-color: #92a9d4;
|
|
16022
|
-
}
|
|
16023
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-info:hover {
|
|
16024
|
-
background-color: #b2c3e1;
|
|
16025
|
-
}
|
|
16026
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-info:hover > td,
|
|
16027
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-info:hover > th {
|
|
16028
|
-
background-color: #b2c3e1;
|
|
16029
|
-
}
|
|
16030
|
-
html:not(#__):not(#___) .cadmin .table-warning,
|
|
16031
|
-
html:not(#__):not(#___) .cadmin .table-warning > th,
|
|
16032
|
-
html:not(#__):not(#___) .cadmin .table-warning > td {
|
|
16033
|
-
background-color: #ebceb8;
|
|
16034
|
-
}
|
|
16035
|
-
html:not(#__):not(#___) .cadmin .table-warning th,
|
|
16036
|
-
html:not(#__):not(#___) .cadmin .table-warning td,
|
|
16037
|
-
html:not(#__):not(#___) .cadmin .table-warning thead th,
|
|
16038
|
-
html:not(#__):not(#___) .cadmin .table-warning tbody + tbody {
|
|
16039
|
-
border-color: #dba47a;
|
|
16040
|
-
}
|
|
16041
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-warning:hover {
|
|
16042
|
-
background-color: #e5c0a4;
|
|
16043
|
-
}
|
|
16044
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-warning:hover > td,
|
|
16045
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-warning:hover > th {
|
|
16046
|
-
background-color: #e5c0a4;
|
|
16047
|
-
}
|
|
16048
|
-
html:not(#__):not(#___) .cadmin .table-danger,
|
|
16049
|
-
html:not(#__):not(#___) .cadmin .table-danger > th,
|
|
16050
|
-
html:not(#__):not(#___) .cadmin .table-danger > td {
|
|
16051
|
-
background-color: #f5bdbd;
|
|
16052
|
-
}
|
|
16053
|
-
html:not(#__):not(#___) .cadmin .table-danger th,
|
|
16054
|
-
html:not(#__):not(#___) .cadmin .table-danger td,
|
|
16055
|
-
html:not(#__):not(#___) .cadmin .table-danger thead th,
|
|
16056
|
-
html:not(#__):not(#___) .cadmin .table-danger tbody + tbody {
|
|
16057
|
-
border-color: #ec8585;
|
|
16058
|
-
}
|
|
16059
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-danger:hover {
|
|
16060
|
-
background-color: #f2a7a7;
|
|
16061
|
-
}
|
|
16062
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-danger:hover > td,
|
|
16063
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-danger:hover > th {
|
|
16064
|
-
background-color: #f2a7a7;
|
|
16065
|
-
}
|
|
16066
|
-
html:not(#__):not(#___) .cadmin .table-light,
|
|
16067
|
-
html:not(#__):not(#___) .cadmin .table-light > th,
|
|
16068
|
-
html:not(#__):not(#___) .cadmin .table-light > td {
|
|
16069
|
-
background-color: #fbfbfc;
|
|
16070
|
-
}
|
|
16071
|
-
html:not(#__):not(#___) .cadmin .table-light th,
|
|
16072
|
-
html:not(#__):not(#___) .cadmin .table-light td,
|
|
16073
|
-
html:not(#__):not(#___) .cadmin .table-light thead th,
|
|
16074
|
-
html:not(#__):not(#___) .cadmin .table-light tbody + tbody {
|
|
16075
|
-
border-color: #f8f8fa;
|
|
16076
|
-
}
|
|
16077
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-light:hover {
|
|
16078
|
-
background-color: #ececf1;
|
|
16079
|
-
}
|
|
16080
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-light:hover > td,
|
|
16081
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-light:hover > th {
|
|
16082
|
-
background-color: #ececf1;
|
|
16083
|
-
}
|
|
16084
|
-
html:not(#__):not(#___) .cadmin .table-dark,
|
|
16085
|
-
html:not(#__):not(#___) .cadmin .table-dark > th,
|
|
16086
|
-
html:not(#__):not(#___) .cadmin .table-dark > td {
|
|
16087
|
-
background-color: #c3c3c6;
|
|
16088
|
-
}
|
|
16089
|
-
html:not(#__):not(#___) .cadmin .table-dark th,
|
|
16090
|
-
html:not(#__):not(#___) .cadmin .table-dark td,
|
|
16091
|
-
html:not(#__):not(#___) .cadmin .table-dark thead th,
|
|
16092
|
-
html:not(#__):not(#___) .cadmin .table-dark tbody + tbody {
|
|
16093
|
-
border-color: #8f8f95;
|
|
16094
|
-
}
|
|
16095
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-dark:hover {
|
|
16096
|
-
background-color: #b6b6ba;
|
|
16097
|
-
}
|
|
16098
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-dark:hover > td,
|
|
16099
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-dark:hover > th {
|
|
16100
|
-
background-color: #b6b6ba;
|
|
16101
|
-
}
|
|
16102
16041
|
html:not(#__):not(#___) .cadmin .table-striped tbody .table-disabled:nth-of-type(odd) td,
|
|
16103
16042
|
html:not(#__):not(#___) .cadmin .table-striped tbody .table-disabled:nth-of-type(odd) th {
|
|
16104
16043
|
background-color: #fff;
|