@clayui/css 3.35.0 → 3.36.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.
Files changed (30) hide show
  1. package/CHANGELOG.md +62 -0
  2. package/lib/css/atlas.css +300 -172
  3. package/lib/css/atlas.css.map +20 -20
  4. package/lib/css/base.css +199 -162
  5. package/lib/css/base.css.map +13 -13
  6. package/package.json +2 -2
  7. package/src/scss/_license-text.scss +1 -1
  8. package/src/scss/atlas/variables/_alerts.scss +1 -5
  9. package/src/scss/atlas/variables/_buttons.scss +79 -7
  10. package/src/scss/atlas/variables/_custom-forms.scss +1 -5
  11. package/src/scss/atlas/variables/_forms.scss +115 -40
  12. package/src/scss/atlas/variables/_globals.scss +362 -70
  13. package/src/scss/atlas/variables/_labels.scss +0 -4
  14. package/src/scss/atlas/variables/_pagination.scss +0 -4
  15. package/src/scss/cadmin/components/_buttons.scss +25 -263
  16. package/src/scss/cadmin/components/_forms.scss +24 -92
  17. package/src/scss/cadmin/components/_utilities-functional-important.scss +4 -0
  18. package/src/scss/cadmin/variables/_buttons.scss +249 -6
  19. package/src/scss/cadmin/variables/_forms.scss +124 -8
  20. package/src/scss/components/_buttons.scss +25 -259
  21. package/src/scss/components/_forms.scss +21 -92
  22. package/src/scss/components/_utilities-functional-important.scss +4 -0
  23. package/src/scss/functions/_global-functions.scss +16 -2
  24. package/src/scss/mixins/_buttons.scss +34 -7
  25. package/src/scss/mixins/_forms.scss +28 -3
  26. package/src/scss/mixins/_globals.scss +12 -0
  27. package/src/scss/variables/_buttons.scss +250 -7
  28. package/src/scss/variables/_custom-forms.scss +2 -3
  29. package/src/scss/variables/_forms.scss +145 -34
  30. package/src/scss/variables/_globals.scss +26 -24
package/lib/css/atlas.css CHANGED
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Clay 3.35.0
3
+ * Clay 3.36.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>
@@ -508,7 +508,7 @@ strong {
508
508
  word-wrap: normal; }
509
509
 
510
510
  code {
511
- color: #e83e8c;
511
+ color: #ff73c3;
512
512
  font-size: 87.5%;
513
513
  word-wrap: break-word; }
514
514
  a > code {
@@ -990,7 +990,9 @@ button.collapse-icon {
990
990
 
991
991
  .btn {
992
992
  background-color: transparent;
993
- border: 0.0625rem solid transparent;
993
+ border-color: transparent;
994
+ border-style: solid;
995
+ border-width: 0.0625rem;
994
996
  border-radius: 0.25rem;
995
997
  box-shadow: none;
996
998
  color: #272833;
@@ -999,10 +1001,16 @@ button.collapse-icon {
999
1001
  font-size: 1rem;
1000
1002
  font-weight: 600;
1001
1003
  line-height: 1.5;
1002
- padding: 0.4375rem 0.9375rem;
1004
+ padding-bottom: 0.4375rem;
1005
+ padding-left: 0.9375rem;
1006
+ padding-right: 0.9375rem;
1007
+ padding-top: 0.4375rem;
1003
1008
  text-align: center;
1004
1009
  text-transform: none;
1005
1010
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
1011
+ -ms-user-select: none;
1012
+ -moz-user-select: none;
1013
+ -webkit-user-select: none;
1006
1014
  user-select: none;
1007
1015
  vertical-align: middle; }
1008
1016
  @media (prefers-reduced-motion: reduce) {
@@ -1014,34 +1022,41 @@ button.collapse-icon {
1014
1022
  .btn:focus, .btn.focus {
1015
1023
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
1016
1024
  outline: 0; }
1017
- .btn:active, .btn.active {
1025
+ .btn:active {
1018
1026
  box-shadow: none; }
1019
- .btn:active:focus, .btn.active:focus {
1027
+ .btn:active:focus {
1020
1028
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff; }
1021
- .btn.disabled, .btn:disabled {
1029
+ .btn[aria-expanded='true'], .btn.active, .btn.show,
1030
+ .show > .btn.dropdown-toggle {
1031
+ box-shadow: none; }
1032
+ .btn:disabled, .btn.disabled {
1022
1033
  cursor: not-allowed;
1023
1034
  opacity: 0.4; }
1024
- .btn.disabled:focus, .btn.disabled:focus:active, .btn:disabled:focus, .btn:disabled:focus:active {
1035
+ .btn:disabled:focus, .btn.disabled:focus {
1025
1036
  box-shadow: none; }
1026
- .btn.disabled:active, .btn:disabled:active {
1037
+ .btn:disabled:active, .btn.disabled:active {
1027
1038
  pointer-events: none; }
1039
+ .btn .c-inner {
1040
+ margin-bottom: -0.4375rem;
1041
+ margin-left: -0.9375rem;
1042
+ margin-right: -0.9375rem;
1043
+ margin-top: -0.4375rem; }
1044
+ .btn .inline-item {
1045
+ font-size: 1rem; }
1046
+ .btn .btn-section {
1047
+ display: block;
1048
+ font-size: 0.6875rem;
1049
+ font-weight: 400;
1050
+ line-height: 1; }
1028
1051
 
1029
1052
  fieldset:disabled a.btn {
1030
- box-shadow: none;
1031
1053
  cursor: not-allowed;
1032
1054
  opacity: 0.4; }
1055
+ fieldset:disabled a.btn:focus {
1056
+ box-shadow: none; }
1033
1057
  fieldset:disabled a.btn:active {
1034
1058
  pointer-events: none; }
1035
1059
 
1036
- .btn .inline-item {
1037
- font-size: 1rem; }
1038
-
1039
- .btn-section {
1040
- display: block;
1041
- font-size: 0.6875rem;
1042
- font-weight: 400;
1043
- line-height: 1; }
1044
-
1045
1060
  .btn-lg, .btn-group-lg > .btn,
1046
1061
  .btn-group-lg .btn-group > .btn {
1047
1062
  border-radius: 0.25rem;
@@ -1051,6 +1066,11 @@ fieldset:disabled a.btn {
1051
1066
  padding-left: 1.5rem;
1052
1067
  padding-right: 1.5rem;
1053
1068
  padding-top: 0.59375rem; }
1069
+ .btn-lg .c-inner, .btn-group-lg > .btn .c-inner, .btn-group-lg .btn-group > .btn .c-inner {
1070
+ margin-bottom: -0.59375rem;
1071
+ margin-left: -1.5rem;
1072
+ margin-right: -1.5rem;
1073
+ margin-top: -0.59375rem; }
1054
1074
  .btn-lg .inline-item, .btn-group-lg > .btn .inline-item, .btn-group-lg .btn-group > .btn .inline-item {
1055
1075
  font-size: 1.125rem; }
1056
1076
  .btn-lg .btn-section, .btn-group-lg > .btn .btn-section, .btn-group-lg .btn-group > .btn .btn-section {
@@ -1065,6 +1085,11 @@ fieldset:disabled a.btn {
1065
1085
  padding-left: 0.75rem;
1066
1086
  padding-right: 0.75rem;
1067
1087
  padding-top: 0.4375rem; }
1088
+ .btn-sm .c-inner, .btn-group-sm > .btn .c-inner, .btn-group-sm .btn-group > .btn .c-inner, .form-group-sm .btn .c-inner {
1089
+ margin-bottom: -0.4375rem;
1090
+ margin-left: -0.75rem;
1091
+ margin-right: -0.75rem;
1092
+ margin-top: -0.4375rem; }
1068
1093
  .btn-sm .btn-section, .btn-group-sm > .btn .btn-section, .btn-group-sm .btn-group > .btn .btn-section, .form-group-sm .btn .btn-section {
1069
1094
  font-size: 0.5625rem; }
1070
1095
 
@@ -1091,75 +1116,50 @@ input[type='button'].btn-block {
1091
1116
  text-align: left;
1092
1117
  text-transform: inherit;
1093
1118
  vertical-align: baseline; }
1119
+ .btn-unstyled .c-inner, .menubar-toggler .c-inner {
1120
+ margin: 0;
1121
+ max-width: none; }
1094
1122
 
1095
1123
  .btn-monospaced {
1124
+ align-items: center;
1125
+ display: inline-flex;
1126
+ flex-direction: column;
1096
1127
  height: 2.5rem;
1128
+ justify-content: center;
1097
1129
  line-height: 1;
1098
1130
  overflow: hidden;
1099
- padding-bottom: 0.25rem;
1131
+ padding-bottom: 0;
1100
1132
  padding-left: 0;
1101
1133
  padding-right: 0;
1102
- padding-top: 0.25rem;
1134
+ padding-top: 0;
1103
1135
  text-align: center;
1104
1136
  white-space: normal;
1105
1137
  width: 2.5rem;
1138
+ overflow-wrap: break-word;
1106
1139
  word-wrap: break-word; }
1140
+ .btn-monospaced .c-inner {
1141
+ margin-bottom: 0;
1142
+ margin-left: 0;
1143
+ margin-right: 0;
1144
+ margin-top: 0;
1145
+ align-items: center;
1146
+ display: flex;
1147
+ flex-direction: column;
1148
+ height: 100%;
1149
+ justify-content: center;
1150
+ padding: 0;
1151
+ width: 100%; }
1107
1152
  .btn-monospaced.btn .lexicon-icon {
1108
1153
  margin-top: 0; }
1109
1154
 
1110
1155
  .btn-monospaced.btn-lg, .btn-group-lg .btn-monospaced, .btn-group-vertical > .btn-monospaced.btn-lg {
1111
1156
  height: 3rem;
1112
- padding-bottom: 0.375rem;
1113
- padding-left: 0;
1114
- padding-right: 0;
1115
- padding-top: 0.375rem;
1116
1157
  width: 3rem; }
1117
1158
 
1118
1159
  .btn-monospaced.btn-sm, .btn-group-sm .btn-monospaced, .btn-group-vertical > .btn-monospaced.btn-sm {
1119
1160
  height: 2rem;
1120
- padding-bottom: 0.1875rem;
1121
- padding-left: 0;
1122
- padding-right: 0;
1123
- padding-top: 0.1875rem;
1124
1161
  width: 2rem; }
1125
1162
 
1126
- .btn .c-inner {
1127
- margin: -0.4375rem -0.9375rem; }
1128
- @media (max-width: 767.98px) {
1129
- .btn .c-inner { } }
1130
-
1131
- .btn-unstyled .c-inner {
1132
- margin: 0;
1133
- max-width: none; }
1134
-
1135
- .btn-monospaced .c-inner {
1136
- align-items: center;
1137
- display: flex;
1138
- flex-direction: column;
1139
- height: calc(100% + 0.5rem);
1140
- justify-content: center;
1141
- margin: -0.25rem 0;
1142
- padding: 0;
1143
- width: 100%; }
1144
-
1145
- .btn-sm .c-inner {
1146
- margin: -0.4375rem -0.75rem; }
1147
- @media (max-width: 767.98px) {
1148
- .btn-sm .c-inner { } }
1149
-
1150
- .btn-sm.btn-monospaced .c-inner {
1151
- height: calc(100% + 0.375rem);
1152
- margin: -0.1875rem 0; }
1153
-
1154
- .btn-lg .c-inner {
1155
- margin: -0.59375rem -1.5rem; }
1156
- @media (max-width: 767.98px) {
1157
- .btn-lg .c-inner { } }
1158
-
1159
- .btn-lg.btn-monospaced .c-inner {
1160
- height: calc(100% + 0.75rem);
1161
- margin: -0.375rem 0; }
1162
-
1163
1163
  .btn-primary {
1164
1164
  background-color: #0b5fff;
1165
1165
  border-color: #0b5fff;
@@ -1168,7 +1168,7 @@ input[type='button'].btn-block {
1168
1168
  background-color: #0053f0;
1169
1169
  border-color: transparent;
1170
1170
  color: #fff; }
1171
- .btn-primary:focus, .btn-primary.focus {
1171
+ .btn-primary:focus, .focus.btn-primary {
1172
1172
  background-color: #0053f0;
1173
1173
  border-color: #004ad7;
1174
1174
  color: #fff; }
@@ -1176,12 +1176,12 @@ input[type='button'].btn-block {
1176
1176
  background-color: #004ad7;
1177
1177
  border-color: transparent;
1178
1178
  color: #fff; }
1179
- .btn-primary[aria-expanded='true'], .btn-primary.active, .btn-primary.show,
1180
- .show > .btn-primary.dropdown-toggle {
1179
+ .btn-primary[aria-expanded='true'], .active.btn-primary, .show.btn-primary,
1180
+ .show > .dropdown-toggle.btn-primary {
1181
1181
  background-color: #004ad7;
1182
1182
  border-color: transparent;
1183
1183
  color: #fff; }
1184
- .btn-primary:disabled, .btn-primary.disabled {
1184
+ .btn-primary:disabled, .disabled.btn-primary {
1185
1185
  background-color: #0b5fff;
1186
1186
  border-color: #0b5fff;
1187
1187
  color: #fff; }
@@ -1194,7 +1194,7 @@ input[type='button'].btn-block {
1194
1194
  background-color: #f7f8f9;
1195
1195
  border-color: #cdced9;
1196
1196
  color: #272833; }
1197
- .btn-secondary:focus, .btn-secondary.focus {
1197
+ .btn-secondary:focus, .focus.btn-secondary {
1198
1198
  background-color: #f7f8f9;
1199
1199
  border-color: #cdced9;
1200
1200
  color: #272833; }
@@ -1202,12 +1202,12 @@ input[type='button'].btn-block {
1202
1202
  background-color: #f1f2f5;
1203
1203
  border-color: #cdced9;
1204
1204
  color: #272833; }
1205
- .btn-secondary[aria-expanded='true'], .btn-secondary.active, .btn-secondary.show,
1206
- .show > .btn-secondary.dropdown-toggle {
1205
+ .btn-secondary[aria-expanded='true'], .active.btn-secondary, .show.btn-secondary,
1206
+ .show > .dropdown-toggle.btn-secondary {
1207
1207
  background-color: #f1f2f5;
1208
1208
  border-color: #cdced9;
1209
1209
  color: #272833; }
1210
- .btn-secondary:disabled, .btn-secondary.disabled {
1210
+ .btn-secondary:disabled, .disabled.btn-secondary {
1211
1211
  background-color: #fff;
1212
1212
  border-color: #cdced9;
1213
1213
  color: #6b6c7e; }
@@ -1220,7 +1220,7 @@ input[type='button'].btn-block {
1220
1220
  background-color: #226a33;
1221
1221
  border-color: transparent;
1222
1222
  color: #fff; }
1223
- .btn-success:focus, .btn-success.focus {
1223
+ .btn-success:focus, .focus.btn-success {
1224
1224
  background-color: #226a33;
1225
1225
  border-color: transparent;
1226
1226
  color: #fff; }
@@ -1228,12 +1228,12 @@ input[type='button'].btn-block {
1228
1228
  background-color: #1c5629;
1229
1229
  border-color: transparent;
1230
1230
  color: #fff; }
1231
- .btn-success[aria-expanded='true'], .btn-success.active, .btn-success.show,
1232
- .show > .btn-success.dropdown-toggle {
1231
+ .btn-success[aria-expanded='true'], .active.btn-success, .show.btn-success,
1232
+ .show > .dropdown-toggle.btn-success {
1233
1233
  background-color: #1c5629;
1234
1234
  border-color: transparent;
1235
1235
  color: #fff; }
1236
- .btn-success:disabled, .btn-success.disabled {
1236
+ .btn-success:disabled, .disabled.btn-success {
1237
1237
  background-color: #287d3c;
1238
1238
  border-color: #287d3c;
1239
1239
  color: #fff; }
@@ -1246,7 +1246,7 @@ input[type='button'].btn-block {
1246
1246
  background-color: #294f98;
1247
1247
  border-color: transparent;
1248
1248
  color: #fff; }
1249
- .btn-info:focus, .btn-info.focus {
1249
+ .btn-info:focus, .focus.btn-info {
1250
1250
  background-color: #294f98;
1251
1251
  border-color: transparent;
1252
1252
  color: #fff; }
@@ -1254,12 +1254,12 @@ input[type='button'].btn-block {
1254
1254
  background-color: #234584;
1255
1255
  border-color: transparent;
1256
1256
  color: #fff; }
1257
- .btn-info[aria-expanded='true'], .btn-info.active, .btn-info.show,
1258
- .show > .btn-info.dropdown-toggle {
1257
+ .btn-info[aria-expanded='true'], .active.btn-info, .show.btn-info,
1258
+ .show > .dropdown-toggle.btn-info {
1259
1259
  background-color: #234584;
1260
1260
  border-color: transparent;
1261
1261
  color: #fff; }
1262
- .btn-info:disabled, .btn-info.disabled {
1262
+ .btn-info:disabled, .disabled.btn-info {
1263
1263
  background-color: #2e5aac;
1264
1264
  border-color: #2e5aac;
1265
1265
  color: #fff; }
@@ -1272,7 +1272,7 @@ input[type='button'].btn-block {
1272
1272
  background-color: #9f4500;
1273
1273
  border-color: transparent;
1274
1274
  color: #fff; }
1275
- .btn-warning:focus, .btn-warning.focus {
1275
+ .btn-warning:focus, .focus.btn-warning {
1276
1276
  background-color: #9f4500;
1277
1277
  border-color: transparent;
1278
1278
  color: #fff; }
@@ -1280,12 +1280,12 @@ input[type='button'].btn-block {
1280
1280
  background-color: #863a00;
1281
1281
  border-color: transparent;
1282
1282
  color: #fff; }
1283
- .btn-warning[aria-expanded='true'], .btn-warning.active, .btn-warning.show,
1284
- .show > .btn-warning.dropdown-toggle {
1283
+ .btn-warning[aria-expanded='true'], .active.btn-warning, .show.btn-warning,
1284
+ .show > .dropdown-toggle.btn-warning {
1285
1285
  background-color: #863a00;
1286
1286
  border-color: transparent;
1287
1287
  color: #fff; }
1288
- .btn-warning:disabled, .btn-warning.disabled {
1288
+ .btn-warning:disabled, .disabled.btn-warning {
1289
1289
  background-color: #b95000;
1290
1290
  border-color: #b95000;
1291
1291
  color: #fff; }
@@ -1298,7 +1298,7 @@ input[type='button'].btn-block {
1298
1298
  background-color: #c31212;
1299
1299
  border-color: transparent;
1300
1300
  color: #fff; }
1301
- .btn-danger:focus, .btn-danger.focus {
1301
+ .btn-danger:focus, .focus.btn-danger {
1302
1302
  background-color: #c31212;
1303
1303
  border-color: transparent;
1304
1304
  color: #fff; }
@@ -1306,12 +1306,12 @@ input[type='button'].btn-block {
1306
1306
  background-color: #ab1010;
1307
1307
  border-color: transparent;
1308
1308
  color: #fff; }
1309
- .btn-danger[aria-expanded='true'], .btn-danger.active, .btn-danger.show,
1310
- .show > .btn-danger.dropdown-toggle {
1309
+ .btn-danger[aria-expanded='true'], .active.btn-danger, .show.btn-danger,
1310
+ .show > .dropdown-toggle.btn-danger {
1311
1311
  background-color: #ab1010;
1312
1312
  border-color: transparent;
1313
1313
  color: #fff; }
1314
- .btn-danger:disabled, .btn-danger.disabled {
1314
+ .btn-danger:disabled, .disabled.btn-danger {
1315
1315
  background-color: #da1414;
1316
1316
  border-color: #da1414;
1317
1317
  color: #fff; }
@@ -1324,7 +1324,7 @@ input[type='button'].btn-block {
1324
1324
  background-color: #e2e4ea;
1325
1325
  border-color: transparent;
1326
1326
  color: #272833; }
1327
- .btn-light:focus, .btn-light.focus {
1327
+ .btn-light:focus, .focus.btn-light {
1328
1328
  background-color: #e2e4ea;
1329
1329
  border-color: transparent;
1330
1330
  color: #272833; }
@@ -1332,12 +1332,12 @@ input[type='button'].btn-block {
1332
1332
  background-color: #d3d6e0;
1333
1333
  border-color: transparent;
1334
1334
  color: #272833; }
1335
- .btn-light[aria-expanded='true'], .btn-light.active, .btn-light.show,
1336
- .show > .btn-light.dropdown-toggle {
1335
+ .btn-light[aria-expanded='true'], .active.btn-light, .show.btn-light,
1336
+ .show > .dropdown-toggle.btn-light {
1337
1337
  background-color: #d3d6e0;
1338
1338
  border-color: transparent;
1339
1339
  color: #272833; }
1340
- .btn-light:disabled, .btn-light.disabled {
1340
+ .btn-light:disabled, .disabled.btn-light {
1341
1341
  background-color: #f1f2f5;
1342
1342
  border-color: #f1f2f5;
1343
1343
  color: #272833; }
@@ -1350,7 +1350,7 @@ input[type='button'].btn-block {
1350
1350
  background-color: #1c1c24;
1351
1351
  border-color: transparent;
1352
1352
  color: #fff; }
1353
- .btn-dark:focus, .btn-dark.focus {
1353
+ .btn-dark:focus, .focus.btn-dark {
1354
1354
  background-color: #1c1c24;
1355
1355
  border-color: transparent;
1356
1356
  color: #fff; }
@@ -1358,12 +1358,12 @@ input[type='button'].btn-block {
1358
1358
  background-color: #111116;
1359
1359
  border-color: transparent;
1360
1360
  color: #fff; }
1361
- .btn-dark[aria-expanded='true'], .btn-dark.active, .btn-dark.show,
1362
- .show > .btn-dark.dropdown-toggle {
1361
+ .btn-dark[aria-expanded='true'], .active.btn-dark, .show.btn-dark,
1362
+ .show > .dropdown-toggle.btn-dark {
1363
1363
  background-color: #111116;
1364
1364
  border-color: transparent;
1365
1365
  color: #fff; }
1366
- .btn-dark:disabled, .btn-dark.disabled {
1366
+ .btn-dark:disabled, .disabled.btn-dark {
1367
1367
  background-color: #272833;
1368
1368
  border-color: #272833;
1369
1369
  color: #fff; }
@@ -1377,17 +1377,17 @@ input[type='button'].btn-block {
1377
1377
  .btn-link:hover {
1378
1378
  color: #004ad7;
1379
1379
  text-decoration: underline; }
1380
- .btn-link:focus, .btn-link.focus {
1380
+ .btn-link:focus, .focus.btn-link {
1381
1381
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
1382
1382
  text-decoration: none; }
1383
1383
  .btn-link:active {
1384
1384
  box-shadow: none; }
1385
1385
  .btn-link:active:focus {
1386
1386
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff; }
1387
- .btn-link[aria-expanded='true'], .btn-link.active, .btn-link.show,
1388
- .show > .btn-link.dropdown-toggle {
1387
+ .btn-link[aria-expanded='true'], .active.btn-link, .show.btn-link,
1388
+ .show > .dropdown-toggle.btn-link {
1389
1389
  box-shadow: none; }
1390
- .btn-link:disabled, .btn-link.disabled {
1390
+ .btn-link:disabled, .disabled.btn-link {
1391
1391
  box-shadow: none;
1392
1392
  color: #0b5fff;
1393
1393
  text-decoration: none; }
@@ -1399,19 +1399,19 @@ input[type='button'].btn-block {
1399
1399
  background-color: #f0f5ff;
1400
1400
  border-color: #0b5fff;
1401
1401
  color: #0b5fff; }
1402
- .btn-outline-primary:focus, .btn-outline-primary.focus {
1402
+ .btn-outline-primary:focus, .focus.btn-outline-primary {
1403
1403
  background-color: #f0f5ff;
1404
1404
  color: #0b5fff; }
1405
1405
  .btn-outline-primary:active {
1406
1406
  background-color: #e6edf8;
1407
1407
  border-color: #0b5fff;
1408
1408
  color: #0b5fff; }
1409
- .btn-outline-primary[aria-expanded='true'], .btn-outline-primary.active, .btn-outline-primary.show,
1410
- .show > .btn-outline-primary.dropdown-toggle {
1409
+ .btn-outline-primary[aria-expanded='true'], .active.btn-outline-primary, .show.btn-outline-primary,
1410
+ .show > .dropdown-toggle.btn-outline-primary {
1411
1411
  background-color: #e6edf8;
1412
1412
  border-color: #0b5fff;
1413
1413
  color: #0b5fff; }
1414
- .btn-outline-primary:disabled, .btn-outline-primary.disabled {
1414
+ .btn-outline-primary:disabled, .disabled.btn-outline-primary {
1415
1415
  background-color: transparent; }
1416
1416
 
1417
1417
  .btn-outline-secondary {
@@ -1421,7 +1421,7 @@ input[type='button'].btn-block {
1421
1421
  background-color: rgba(39, 40, 51, 0.03);
1422
1422
  border-color: transparent;
1423
1423
  color: #272833; }
1424
- .btn-outline-secondary:focus, .btn-outline-secondary.focus {
1424
+ .btn-outline-secondary:focus, .focus.btn-outline-secondary {
1425
1425
  background-color: rgba(39, 40, 51, 0.03);
1426
1426
  border-color: transparent;
1427
1427
  color: #272833; }
@@ -1429,12 +1429,12 @@ input[type='button'].btn-block {
1429
1429
  background-color: rgba(39, 40, 51, 0.06);
1430
1430
  border-color: transparent;
1431
1431
  color: #272833; }
1432
- .btn-outline-secondary[aria-expanded='true'], .btn-outline-secondary.active, .btn-outline-secondary.show,
1433
- .show > .btn-outline-secondary.dropdown-toggle {
1432
+ .btn-outline-secondary[aria-expanded='true'], .active.btn-outline-secondary, .show.btn-outline-secondary,
1433
+ .show > .dropdown-toggle.btn-outline-secondary {
1434
1434
  background-color: rgba(39, 40, 51, 0.06);
1435
1435
  border-color: transparent;
1436
1436
  color: #272833; }
1437
- .btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
1437
+ .btn-outline-secondary:disabled, .disabled.btn-outline-secondary {
1438
1438
  background-color: transparent;
1439
1439
  color: #6b6c7e;
1440
1440
  border-color: #6b6c7e; }
@@ -1446,19 +1446,19 @@ input[type='button'].btn-block {
1446
1446
  background-color: #226a33;
1447
1447
  border-color: #287d3c;
1448
1448
  color: #fff; }
1449
- .btn-outline-success:focus, .btn-outline-success.focus {
1449
+ .btn-outline-success:focus, .focus.btn-outline-success {
1450
1450
  background-color: #226a33;
1451
1451
  color: #fff; }
1452
1452
  .btn-outline-success:active {
1453
1453
  background-color: #1c5629;
1454
1454
  border-color: #287d3c;
1455
1455
  color: #fff; }
1456
- .btn-outline-success[aria-expanded='true'], .btn-outline-success.active, .btn-outline-success.show,
1457
- .show > .btn-outline-success.dropdown-toggle {
1456
+ .btn-outline-success[aria-expanded='true'], .active.btn-outline-success, .show.btn-outline-success,
1457
+ .show > .dropdown-toggle.btn-outline-success {
1458
1458
  background-color: #1c5629;
1459
1459
  border-color: #287d3c;
1460
1460
  color: #fff; }
1461
- .btn-outline-success:disabled, .btn-outline-success.disabled {
1461
+ .btn-outline-success:disabled, .disabled.btn-outline-success {
1462
1462
  background-color: transparent; }
1463
1463
 
1464
1464
  .btn-outline-info {
@@ -1468,19 +1468,19 @@ input[type='button'].btn-block {
1468
1468
  background-color: #294f98;
1469
1469
  border-color: #2e5aac;
1470
1470
  color: #fff; }
1471
- .btn-outline-info:focus, .btn-outline-info.focus {
1471
+ .btn-outline-info:focus, .focus.btn-outline-info {
1472
1472
  background-color: #294f98;
1473
1473
  color: #fff; }
1474
1474
  .btn-outline-info:active {
1475
1475
  background-color: #234584;
1476
1476
  border-color: #2e5aac;
1477
1477
  color: #fff; }
1478
- .btn-outline-info[aria-expanded='true'], .btn-outline-info.active, .btn-outline-info.show,
1479
- .show > .btn-outline-info.dropdown-toggle {
1478
+ .btn-outline-info[aria-expanded='true'], .active.btn-outline-info, .show.btn-outline-info,
1479
+ .show > .dropdown-toggle.btn-outline-info {
1480
1480
  background-color: #234584;
1481
1481
  border-color: #2e5aac;
1482
1482
  color: #fff; }
1483
- .btn-outline-info:disabled, .btn-outline-info.disabled {
1483
+ .btn-outline-info:disabled, .disabled.btn-outline-info {
1484
1484
  background-color: transparent; }
1485
1485
 
1486
1486
  .btn-outline-warning {
@@ -1490,19 +1490,19 @@ input[type='button'].btn-block {
1490
1490
  background-color: #9f4500;
1491
1491
  border-color: #b95000;
1492
1492
  color: #fff; }
1493
- .btn-outline-warning:focus, .btn-outline-warning.focus {
1493
+ .btn-outline-warning:focus, .focus.btn-outline-warning {
1494
1494
  background-color: #9f4500;
1495
1495
  color: #fff; }
1496
1496
  .btn-outline-warning:active {
1497
1497
  background-color: #863a00;
1498
1498
  border-color: #b95000;
1499
1499
  color: #fff; }
1500
- .btn-outline-warning[aria-expanded='true'], .btn-outline-warning.active, .btn-outline-warning.show,
1501
- .show > .btn-outline-warning.dropdown-toggle {
1500
+ .btn-outline-warning[aria-expanded='true'], .active.btn-outline-warning, .show.btn-outline-warning,
1501
+ .show > .dropdown-toggle.btn-outline-warning {
1502
1502
  background-color: #863a00;
1503
1503
  border-color: #b95000;
1504
1504
  color: #fff; }
1505
- .btn-outline-warning:disabled, .btn-outline-warning.disabled {
1505
+ .btn-outline-warning:disabled, .disabled.btn-outline-warning {
1506
1506
  background-color: transparent; }
1507
1507
 
1508
1508
  .btn-outline-danger {
@@ -1512,17 +1512,17 @@ input[type='button'].btn-block {
1512
1512
  background-color: #c31212;
1513
1513
  border-color: #da1414;
1514
1514
  color: #fff; }
1515
- .btn-outline-danger:focus, .btn-outline-danger.focus {
1515
+ .btn-outline-danger:focus, .focus.btn-outline-danger {
1516
1516
  background-color: #c31212;
1517
1517
  color: #fff; }
1518
1518
  .btn-outline-danger:active {
1519
1519
  border-color: #da1414;
1520
1520
  color: #fff; }
1521
- .btn-outline-danger[aria-expanded='true'], .btn-outline-danger.active, .btn-outline-danger.show,
1522
- .show > .btn-outline-danger.dropdown-toggle {
1521
+ .btn-outline-danger[aria-expanded='true'], .active.btn-outline-danger, .show.btn-outline-danger,
1522
+ .show > .dropdown-toggle.btn-outline-danger {
1523
1523
  border-color: #da1414;
1524
1524
  color: #fff; }
1525
- .btn-outline-danger:disabled, .btn-outline-danger.disabled {
1525
+ .btn-outline-danger:disabled, .disabled.btn-outline-danger {
1526
1526
  background-color: transparent; }
1527
1527
 
1528
1528
  .btn-outline-light {
@@ -1532,19 +1532,19 @@ input[type='button'].btn-block {
1532
1532
  background-color: #e2e4ea;
1533
1533
  border-color: #f1f2f5;
1534
1534
  color: #272833; }
1535
- .btn-outline-light:focus, .btn-outline-light.focus {
1535
+ .btn-outline-light:focus, .focus.btn-outline-light {
1536
1536
  background-color: #e2e4ea;
1537
1537
  color: #272833; }
1538
1538
  .btn-outline-light:active {
1539
1539
  background-color: #d3d6e0;
1540
1540
  border-color: #f1f2f5;
1541
1541
  color: #272833; }
1542
- .btn-outline-light[aria-expanded='true'], .btn-outline-light.active, .btn-outline-light.show,
1543
- .show > .btn-outline-light.dropdown-toggle {
1542
+ .btn-outline-light[aria-expanded='true'], .active.btn-outline-light, .show.btn-outline-light,
1543
+ .show > .dropdown-toggle.btn-outline-light {
1544
1544
  background-color: #d3d6e0;
1545
1545
  border-color: #f1f2f5;
1546
1546
  color: #272833; }
1547
- .btn-outline-light:disabled, .btn-outline-light.disabled {
1547
+ .btn-outline-light:disabled, .disabled.btn-outline-light {
1548
1548
  background-color: transparent; }
1549
1549
 
1550
1550
  .btn-outline-dark {
@@ -1554,24 +1554,26 @@ input[type='button'].btn-block {
1554
1554
  background-color: #1c1c24;
1555
1555
  border-color: #272833;
1556
1556
  color: #fff; }
1557
- .btn-outline-dark:focus, .btn-outline-dark.focus {
1557
+ .btn-outline-dark:focus, .focus.btn-outline-dark {
1558
1558
  background-color: #1c1c24;
1559
1559
  color: #fff; }
1560
1560
  .btn-outline-dark:active {
1561
1561
  background-color: #111116;
1562
1562
  border-color: #272833;
1563
1563
  color: #fff; }
1564
- .btn-outline-dark[aria-expanded='true'], .btn-outline-dark.active, .btn-outline-dark.show,
1565
- .show > .btn-outline-dark.dropdown-toggle {
1564
+ .btn-outline-dark[aria-expanded='true'], .active.btn-outline-dark, .show.btn-outline-dark,
1565
+ .show > .dropdown-toggle.btn-outline-dark {
1566
1566
  background-color: #111116;
1567
1567
  border-color: #272833;
1568
1568
  color: #fff; }
1569
- .btn-outline-dark:disabled, .btn-outline-dark.disabled {
1569
+ .btn-outline-dark:disabled, .disabled.btn-outline-dark {
1570
1570
  background-color: transparent; }
1571
1571
 
1572
1572
  .btn-outline-borderless {
1573
1573
  border-color: transparent; }
1574
- .btn-outline-borderless:hover, .btn-outline-borderless:focus {
1574
+ .btn-outline-borderless:hover {
1575
+ border-color: transparent; }
1576
+ .btn-outline-borderless:focus, .btn-outline-borderless.focus {
1575
1577
  border-color: transparent; }
1576
1578
  .btn-outline-borderless:disabled, .btn-outline-borderless.disabled {
1577
1579
  border-color: transparent; }
@@ -3066,6 +3068,9 @@ input[type='button'].btn-block {
3066
3068
  text-decoration: none;
3067
3069
  border-radius: 1px;
3068
3070
  transition: box-shadow 0.15s ease-in-out; }
3071
+ @media (prefers-reduced-motion: reduce) {
3072
+ .breadcrumb-link {
3073
+ transition: none; } }
3069
3074
  .breadcrumb-link:hover {
3070
3075
  color: #6b6c7e;
3071
3076
  text-decoration: underline; }
@@ -3300,6 +3305,9 @@ input[type='button'].btn-block {
3300
3305
  word-wrap: break-word;
3301
3306
  outline: 0;
3302
3307
  transition: box-shadow 0.15s ease-in-out; }
3308
+ @media (prefers-reduced-motion: reduce) {
3309
+ .label {
3310
+ transition: none; } }
3303
3311
  a.label:focus,
3304
3312
  button.label:focus {
3305
3313
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff; }
@@ -4477,6 +4485,10 @@ button.label {
4477
4485
  cursor: pointer;
4478
4486
  outline: 0;
4479
4487
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
4488
+ @media (prefers-reduced-motion: reduce) {
4489
+ .card-interactive.card,
4490
+ .card-interactive .card {
4491
+ transition: none; } }
4480
4492
  .card-interactive.card:hover,
4481
4493
  .card-interactive .card:hover {
4482
4494
  background-color: #f7f8f9;
@@ -4498,6 +4510,9 @@ button.label {
4498
4510
  position: absolute;
4499
4511
  right: 0;
4500
4512
  transition: height 0.15s ease-out; }
4513
+ @media (prefers-reduced-motion: reduce) {
4514
+ .card-interactive::after {
4515
+ transition: none; } }
4501
4516
 
4502
4517
  .card-interactive:hover::after, .card-interactive.hover::after {
4503
4518
  height: 4px; }
@@ -5289,6 +5304,9 @@ button.label {
5289
5304
  flex-grow: 1;
5290
5305
  overflow: hidden;
5291
5306
  transition: height 0.25s ease; }
5307
+ @media (prefers-reduced-motion: reduce) {
5308
+ .drilldown-inner {
5309
+ transition: none; } }
5292
5310
 
5293
5311
  .drilldown-item {
5294
5312
  display: none;
@@ -5444,6 +5462,7 @@ label {
5444
5462
  font-weight: 600;
5445
5463
  margin-bottom: 0.25rem;
5446
5464
  max-width: 100%;
5465
+ overflow-wrap: break-word;
5447
5466
  word-wrap: break-word; }
5448
5467
  label[for] {
5449
5468
  cursor: pointer; }
@@ -5463,12 +5482,14 @@ label {
5463
5482
  display: inline-block;
5464
5483
  margin-bottom: 0.25rem;
5465
5484
  max-width: 100%;
5485
+ overflow-wrap: break-word;
5466
5486
  word-wrap: break-word; }
5467
5487
 
5468
5488
  .form-control {
5469
5489
  background-color: #f1f2f5;
5470
5490
  border-color: #e7e7ed;
5471
5491
  border-style: solid;
5492
+ border-width: 0.0625rem;
5472
5493
  border-bottom-width: 0.0625rem;
5473
5494
  border-left-width: 0.0625rem;
5474
5495
  border-right-width: 0.0625rem;
@@ -5486,14 +5507,11 @@ label {
5486
5507
  padding-left: 1rem;
5487
5508
  padding-right: 1rem;
5488
5509
  padding-top: 0.4375rem;
5489
- width: 100%;
5490
- transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
5510
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
5511
+ width: 100%; }
5491
5512
  @media (prefers-reduced-motion: reduce) {
5492
5513
  .form-control {
5493
5514
  transition: none; } }
5494
- @media (max-width: 767.98px) {
5495
- .form-control {
5496
- font-size: 1rem; } }
5497
5515
  .form-control::placeholder {
5498
5516
  color: #6b6c7e;
5499
5517
  opacity: 1; }
@@ -5509,6 +5527,11 @@ label {
5509
5527
  color: #a7a9bc;
5510
5528
  cursor: not-allowed;
5511
5529
  opacity: 1; }
5530
+ .form-control:disabled::placeholder, .form-control.disabled::placeholder {
5531
+ color: #a7a9bc; }
5532
+ @media (max-width: 767.98px) {
5533
+ .form-control {
5534
+ font-size: 1rem; } }
5512
5535
  .form-control:not([type='range']) {
5513
5536
  -moz-appearance: none;
5514
5537
  -webkit-appearance: none;
@@ -5823,6 +5846,9 @@ fieldset[disabled] .form-control, .form-control[disabled] {
5823
5846
  border-radius: 0.25rem;
5824
5847
  outline: 0;
5825
5848
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
5849
+ @media (prefers-reduced-motion: reduce) {
5850
+ .form-control-plaintext[readonly] {
5851
+ transition: none; } }
5826
5852
  .form-control-plaintext[readonly]:focus, .form-control-plaintext[readonly].focus {
5827
5853
  box-shadow: none;
5828
5854
  border-color: #80acff; }
@@ -6038,6 +6064,9 @@ textarea.form-control-sm,
6038
6064
  color: #6b6c7e;
6039
6065
  border-radius: 1px;
6040
6066
  transition: box-shadow 0.15s ease-in-out; }
6067
+ @media (prefers-reduced-motion: reduce) {
6068
+ .component-link {
6069
+ transition: none; } }
6041
6070
  .component-link:hover {
6042
6071
  color: #484955; }
6043
6072
  .component-link:focus {
@@ -6052,6 +6081,9 @@ textarea.form-control-sm,
6052
6081
  color: #0b5fff;
6053
6082
  border-radius: 1px;
6054
6083
  transition: box-shadow 0.15s ease-in-out; }
6084
+ @media (prefers-reduced-motion: reduce) {
6085
+ .link-primary {
6086
+ transition: none; } }
6055
6087
  .link-primary:hover {
6056
6088
  color: #0041be; }
6057
6089
  .link-primary:focus {
@@ -6063,6 +6095,9 @@ textarea.form-control-sm,
6063
6095
  color: #6b6c7e;
6064
6096
  border-radius: 1px;
6065
6097
  transition: box-shadow 0.15s ease-in-out; }
6098
+ @media (prefers-reduced-motion: reduce) {
6099
+ .link-secondary {
6100
+ transition: none; } }
6066
6101
  .link-secondary:hover {
6067
6102
  color: #272833; }
6068
6103
  .link-secondary:focus {
@@ -6091,6 +6126,9 @@ button.link-outline {
6091
6126
  padding-top: 0.4375rem;
6092
6127
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
6093
6128
  vertical-align: middle; }
6129
+ @media (prefers-reduced-motion: reduce) {
6130
+ .link-outline {
6131
+ transition: none; } }
6094
6132
  .link-outline:hover {
6095
6133
  text-decoration: none; }
6096
6134
  .link-outline:disabled:active, .link-outline.disabled:active {
@@ -6195,6 +6233,9 @@ button.link-outline {
6195
6233
  color: #272833;
6196
6234
  border-radius: 1px;
6197
6235
  transition: box-shadow 0.15s ease-in-out; }
6236
+ @media (prefers-reduced-motion: reduce) {
6237
+ .component-title a {
6238
+ transition: none; } }
6198
6239
  .component-title a:hover {
6199
6240
  color: #060608; }
6200
6241
  .component-title a:focus {
@@ -6211,6 +6252,9 @@ button.link-outline {
6211
6252
  color: #6b6c7e;
6212
6253
  border-radius: 1px;
6213
6254
  transition: box-shadow 0.15s ease-in-out; }
6255
+ @media (prefers-reduced-motion: reduce) {
6256
+ .component-subtitle a {
6257
+ transition: none; } }
6214
6258
  .component-subtitle a:hover {
6215
6259
  color: #272833; }
6216
6260
  .component-subtitle a:focus {
@@ -6234,6 +6278,9 @@ button.link-outline {
6234
6278
  vertical-align: middle;
6235
6279
  width: 2rem;
6236
6280
  font-size: 1rem; }
6281
+ @media (prefers-reduced-motion: reduce) {
6282
+ .component-action {
6283
+ transition: none; } }
6237
6284
  .component-action:hover {
6238
6285
  background-color: rgba(39, 40, 51, 0.03);
6239
6286
  color: #272833; }
@@ -6613,6 +6660,9 @@ button.link-outline {
6613
6660
  transition: box-shadow 0.15s ease-in-out;
6614
6661
  width: 0.875rem;
6615
6662
  background-color: transparent; }
6663
+ @media (prefers-reduced-motion: reduce) {
6664
+ .clay-color-pointer {
6665
+ transition: none; } }
6616
6666
  .clay-color-pointer:focus, .clay-color-pointer.focus {
6617
6667
  box-shadow: 0 0 0 0.125rem #80acff;
6618
6668
  outline: 0; }
@@ -7014,7 +7064,7 @@ label.custom-control-label {
7014
7064
  color: #272833;
7015
7065
  content: 'Browse';
7016
7066
  display: block;
7017
- height: 2.375rem;
7067
+ height: 36px;
7018
7068
  line-height: 1.5;
7019
7069
  padding: 0.4375rem 1rem;
7020
7070
  position: absolute;
@@ -7268,6 +7318,9 @@ label.custom-control-label {
7268
7318
  .date-picker-nav .nav-btn {
7269
7319
  color: #6b6c7e;
7270
7320
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
7321
+ @media (prefers-reduced-motion: reduce) {
7322
+ .date-picker-nav .nav-btn {
7323
+ transition: none; } }
7271
7324
  .date-picker-nav .nav-btn:hover {
7272
7325
  background-color: #f1f2f5;
7273
7326
  color: #272833; }
@@ -7370,6 +7423,9 @@ label.custom-control-label {
7370
7423
  white-space: nowrap;
7371
7424
  width: 2rem;
7372
7425
  background-color: transparent; }
7426
+ @media (prefers-reduced-motion: reduce) {
7427
+ .date-picker-calendar-item {
7428
+ transition: none; } }
7373
7429
  .date-picker-calendar-item:disabled, .date-picker-calendar-item.disabled {
7374
7430
  cursor: not-allowed; }
7375
7431
  .date-picker-calendar-item .c-inner {
@@ -7417,9 +7473,6 @@ label.custom-control-label {
7417
7473
  color: #6b6c7e;
7418
7474
  cursor: pointer;
7419
7475
  position: relative; }
7420
- a.date-picker-date,
7421
- button.date-picker-date {
7422
- cursor: pointer; }
7423
7476
  .date-picker-date:hover {
7424
7477
  background-color: #f1f2f5;
7425
7478
  color: #272833; }
@@ -7522,21 +7575,21 @@ label.custom-control-label {
7522
7575
  .was-validated .form-control:valid, .form-control.is-valid {
7523
7576
  border-color: #287d3c;
7524
7577
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23287d3c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
7525
- background-position: right calc(0.375em + 0.21875rem) center;
7578
+ background-position: right 9px center;
7526
7579
  background-repeat: no-repeat;
7527
- background-size: calc(0.75em + 0.4375rem) calc(0.75em + 0.4375rem);
7580
+ background-size: 18px 18px 18px 18px;
7528
7581
  padding-right: 2.375rem; }
7529
7582
  .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
7530
7583
  border-color: #287d3c;
7531
7584
  box-shadow: 0 0 0 0.2rem rgba(40, 125, 60, 0.25); }
7532
7585
 
7533
7586
  .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
7534
- background-position: top calc(0.375em + 0.21875rem) right calc(0.375em + 0.21875rem);
7587
+ background-position: top 9px right 9px;
7535
7588
  padding-right: 2.375rem; }
7536
7589
 
7537
7590
  .was-validated .custom-select:valid, .custom-select.is-valid {
7538
7591
  border-color: #287d3c;
7539
- background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23393a4a' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23287d3c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #f1f2f5 no-repeat center right 2rem/calc(0.75em + 0.4375rem) calc(0.75em + 0.4375rem);
7592
+ background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23393a4a' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23287d3c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #f1f2f5 no-repeat center right 2rem/18px 18px;
7540
7593
  padding-right: calc( (1em * 0.75) + (2 * 0.4375rem * 0.75) + 1rem + 1rem); }
7541
7594
  .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
7542
7595
  border-color: #287d3c;
@@ -7602,21 +7655,21 @@ label.custom-control-label {
7602
7655
  .was-validated .form-control:invalid, .form-control.is-invalid {
7603
7656
  border-color: #da1414;
7604
7657
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23da1414' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23da1414' stroke='none'/%3e%3c/svg%3e");
7605
- background-position: right calc(0.375em + 0.21875rem) center;
7658
+ background-position: right 9px center;
7606
7659
  background-repeat: no-repeat;
7607
- background-size: calc(0.75em + 0.4375rem) calc(0.75em + 0.4375rem);
7660
+ background-size: 18px 18px 18px 18px;
7608
7661
  padding-right: 2.375rem; }
7609
7662
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
7610
7663
  border-color: #da1414;
7611
7664
  box-shadow: 0 0 0 0.2rem rgba(218, 20, 20, 0.25); }
7612
7665
 
7613
7666
  .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
7614
- background-position: top calc(0.375em + 0.21875rem) right calc(0.375em + 0.21875rem);
7667
+ background-position: top 9px right 9px;
7615
7668
  padding-right: 2.375rem; }
7616
7669
 
7617
7670
  .was-validated .custom-select:invalid, .custom-select.is-invalid {
7618
7671
  border-color: #da1414;
7619
- background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23393a4a' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23da1414' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23da1414' stroke='none'/%3e%3c/svg%3e") #f1f2f5 no-repeat center right 2rem/calc(0.75em + 0.4375rem) calc(0.75em + 0.4375rem);
7672
+ background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23393a4a' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23da1414' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23da1414' stroke='none'/%3e%3c/svg%3e") #f1f2f5 no-repeat center right 2rem/18px 18px;
7620
7673
  padding-right: calc( (1em * 0.75) + (2 * 0.4375rem * 0.75) + 1rem + 1rem); }
7621
7674
  .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
7622
7675
  border-color: #da1414;
@@ -8025,16 +8078,7 @@ label.custom-control-label {
8025
8078
  .input-group-lg > .input-group-item > .btn-monospaced {
8026
8079
  height: 3rem;
8027
8080
  line-height: 1;
8028
- padding-bottom: 0.375rem;
8029
- padding-left: 0;
8030
- padding-right: 0;
8031
- padding-top: 0.375rem;
8032
8081
  width: 3rem; }
8033
- .input-group-lg > .input-group-item > .btn-monospaced .c-inner {
8034
- margin-bottom: -0.375rem;
8035
- margin-left: 0;
8036
- margin-right: 0;
8037
- margin-top: -0.375rem; }
8038
8082
 
8039
8083
  .input-group-lg > .input-group-item > .form-control,
8040
8084
  .input-group-lg > .input-group-item > .form-file .btn {
@@ -8089,16 +8133,7 @@ label.custom-control-label {
8089
8133
  .input-group-sm > .input-group-item > .btn-monospaced, .form-group-sm .input-group > .input-group-item > .btn-monospaced {
8090
8134
  height: 2rem;
8091
8135
  line-height: 1;
8092
- padding-bottom: 0.1875rem;
8093
- padding-left: 0;
8094
- padding-right: 0;
8095
- padding-top: 0.1875rem;
8096
8136
  width: 2rem; }
8097
- .input-group-sm > .input-group-item > .btn-monospaced .c-inner, .form-group-sm .input-group > .input-group-item > .btn-monospaced .c-inner {
8098
- margin-bottom: -0.1875rem;
8099
- margin-left: 0;
8100
- margin-right: 0;
8101
- margin-top: -0.1875rem; }
8102
8137
 
8103
8138
  .input-group-sm > .input-group-item > .form-control, .form-group-sm .input-group > .input-group-item > .form-control,
8104
8139
  .input-group-sm > .input-group-item > .form-file .btn,
@@ -8500,6 +8535,9 @@ label.custom-control-label {
8500
8535
  border-radius: 1px;
8501
8536
  display: inline-block;
8502
8537
  transition: box-shadow 0.15s ease-in-out; }
8538
+ @media (prefers-reduced-motion: reduce) {
8539
+ .list-group-title a {
8540
+ transition: none; } }
8503
8541
  .list-group-title a:hover {
8504
8542
  color: #272833; }
8505
8543
  .list-group-title a:focus {
@@ -8515,6 +8553,9 @@ label.custom-control-label {
8515
8553
  display: inline-block;
8516
8554
  max-width: 100%;
8517
8555
  transition: box-shadow 0.15s ease-in-out; }
8556
+ @media (prefers-reduced-motion: reduce) {
8557
+ .list-group-subtitle a {
8558
+ transition: none; } }
8518
8559
  .list-group-subtitle a:hover {
8519
8560
  color: #272833; }
8520
8561
  .list-group-subtitle a:focus {
@@ -8531,6 +8572,9 @@ label.custom-control-label {
8531
8572
  display: inline-block;
8532
8573
  max-width: 100%;
8533
8574
  transition: box-shadow 0.15s ease-in-out; }
8575
+ @media (prefers-reduced-motion: reduce) {
8576
+ .list-group-text a {
8577
+ transition: none; } }
8534
8578
  .list-group-text a:hover {
8535
8579
  color: #272833; }
8536
8580
  .list-group-text a:focus {
@@ -8547,6 +8591,9 @@ label.custom-control-label {
8547
8591
  display: inline-block;
8548
8592
  max-width: 100%;
8549
8593
  transition: box-shadow 0.15s ease-in-out; }
8594
+ @media (prefers-reduced-motion: reduce) {
8595
+ .list-group-subtext a {
8596
+ transition: none; } }
8550
8597
  .list-group-subtext a:hover {
8551
8598
  color: #272833; }
8552
8599
  .list-group-subtext a:focus {
@@ -9720,6 +9767,9 @@ label.custom-control-label {
9720
9767
  white-space: nowrap;
9721
9768
  font-weight: 600;
9722
9769
  transition: box-shadow 0.15s ease-in-out; }
9770
+ @media (prefers-reduced-motion: reduce) {
9771
+ .nav-tabs .nav-link {
9772
+ transition: none; } }
9723
9773
  .nav-tabs .nav-link:hover {
9724
9774
  border-color: transparent; }
9725
9775
  .nav-tabs .nav-link:focus {
@@ -9794,6 +9844,9 @@ label.custom-control-label {
9794
9844
  font-weight: 600;
9795
9845
  line-height: 1;
9796
9846
  transition: box-shadow 0.15s ease-in-out; }
9847
+ @media (prefers-reduced-motion: reduce) {
9848
+ .nav-underline .nav-link {
9849
+ transition: none; } }
9797
9850
  .nav-underline .nav-link:focus {
9798
9851
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
9799
9852
  outline: 0; }
@@ -9898,7 +9951,11 @@ label.custom-control-label {
9898
9951
  color: #272833;
9899
9952
  font-size: 0.875rem;
9900
9953
  font-weight: 600;
9901
- transition: box-shadow 0.15s ease-in-out; }
9954
+ transition: box-shadow 0.15s ease-in-out; } }
9955
+ @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
9956
+ .menubar-vertical-expand-md.menubar-transparent .menubar-toggler {
9957
+ transition: none; } }
9958
+ @media (max-width: 767.98px) {
9902
9959
  .menubar-vertical-expand-md.menubar-transparent .menubar-toggler:focus, .menubar-vertical-expand-md.menubar-transparent .menubar-toggler.focus {
9903
9960
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
9904
9961
  outline: 0; }
@@ -9910,6 +9967,9 @@ label.custom-control-label {
9910
9967
  color: #6b6c7e;
9911
9968
  border-radius: 0.375rem;
9912
9969
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
9970
+ @media (prefers-reduced-motion: reduce) {
9971
+ .menubar-vertical-expand-md.menubar-transparent .nav-link {
9972
+ transition: none; } }
9913
9973
  .menubar-vertical-expand-md.menubar-transparent .nav-link:hover {
9914
9974
  color: #272833;
9915
9975
  background-color: rgba(39, 40, 51, 0.03); }
@@ -10038,7 +10098,11 @@ label.custom-control-label {
10038
10098
  color: #272833;
10039
10099
  font-size: 0.875rem;
10040
10100
  font-weight: 600;
10041
- transition: box-shadow 0.15s ease-in-out; }
10101
+ transition: box-shadow 0.15s ease-in-out; } }
10102
+ @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
10103
+ .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler {
10104
+ transition: none; } }
10105
+ @media (max-width: 991.98px) {
10042
10106
  .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler:focus, .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler.focus {
10043
10107
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
10044
10108
  outline: 0; }
@@ -10050,6 +10114,9 @@ label.custom-control-label {
10050
10114
  color: #6b6c7e;
10051
10115
  border-radius: 0.375rem;
10052
10116
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
10117
+ @media (prefers-reduced-motion: reduce) {
10118
+ .menubar-vertical-expand-lg.menubar-transparent .nav-link {
10119
+ transition: none; } }
10053
10120
  .menubar-vertical-expand-lg.menubar-transparent .nav-link:hover {
10054
10121
  color: #272833;
10055
10122
  background-color: rgba(39, 40, 51, 0.03); }
@@ -12970,6 +13037,9 @@ label.custom-control-label {
12970
13037
  position: relative;
12971
13038
  transition: box-shadow 0.15s ease-in-out;
12972
13039
  background-color: transparent; }
13040
+ @media (prefers-reduced-motion: reduce) {
13041
+ .page-link {
13042
+ transition: none; } }
12973
13043
  .page-link > .c-inner {
12974
13044
  margin-bottom: 0;
12975
13045
  margin-left: -0.625rem;
@@ -13057,6 +13127,10 @@ label.custom-control-label {
13057
13127
  padding-top: 0;
13058
13128
  text-decoration: none;
13059
13129
  transition: box-shadow 0.15s ease-in-out; }
13130
+ @media (prefers-reduced-motion: reduce) {
13131
+ .pagination-items-per-page > a,
13132
+ .pagination-items-per-page > button {
13133
+ transition: none; } }
13060
13134
  .pagination-items-per-page > a > .c-inner,
13061
13135
  .pagination-items-per-page > button > .c-inner {
13062
13136
  margin-bottom: 0;
@@ -13248,6 +13322,9 @@ label.custom-control-label {
13248
13322
  color: inherit;
13249
13323
  display: block;
13250
13324
  transition: box-shadow 0.15s ease-in-out; }
13325
+ @media (prefers-reduced-motion: reduce) {
13326
+ .panel-header-link {
13327
+ transition: none; } }
13251
13328
  .panel-header-link:hover {
13252
13329
  color: inherit;
13253
13330
  text-decoration: none; }
@@ -14009,6 +14086,9 @@ a.sheet-subtitle {
14009
14086
  color: #272833;
14010
14087
  border-radius: 1px;
14011
14088
  transition: box-shadow 0.15s ease-in-out; }
14089
+ @media (prefers-reduced-motion: reduce) {
14090
+ a.sheet-subtitle {
14091
+ transition: none; } }
14012
14092
  a.sheet-subtitle:hover {
14013
14093
  text-decoration: none; }
14014
14094
  a.sheet-subtitle:focus {
@@ -14387,6 +14467,9 @@ a.sheet-subtitle {
14387
14467
  border-radius: 0.25rem;
14388
14468
  color: #a7a9bc;
14389
14469
  transition: box-shadow 0.15s ease-in-out; }
14470
+ @media (prefers-reduced-motion: reduce) {
14471
+ .sidebar-dark .nav-nested .nav-link {
14472
+ transition: none; } }
14390
14473
  .sidebar-dark .nav-nested .nav-link:hover {
14391
14474
  color: #fff; }
14392
14475
  .sidebar-dark .nav-nested .nav-link:focus {
@@ -14408,9 +14491,15 @@ a.sheet-subtitle {
14408
14491
 
14409
14492
  .c-slideout-transition-in {
14410
14493
  transition: all 0.3s ease-in-out; }
14494
+ @media (prefers-reduced-motion: reduce) {
14495
+ .c-slideout-transition-in {
14496
+ transition: none; } }
14411
14497
 
14412
14498
  .c-slideout-transition-out {
14413
14499
  transition: all 0.2s ease-in; }
14500
+ @media (prefers-reduced-motion: reduce) {
14501
+ .c-slideout-transition-out {
14502
+ transition: none; } }
14414
14503
 
14415
14504
  .c-slideout-fixed {
14416
14505
  position: fixed; }
@@ -14533,6 +14622,9 @@ caption {
14533
14622
  border-radius: 1px;
14534
14623
  color: #6b6c7e;
14535
14624
  transition: box-shadow 0.15s ease-in-out; }
14625
+ @media (prefers-reduced-motion: reduce) {
14626
+ .table thead th a {
14627
+ transition: none; } }
14536
14628
  .table thead th a:hover {
14537
14629
  color: #272833; }
14538
14630
  .table thead th a:focus {
@@ -14844,6 +14936,9 @@ caption {
14844
14936
  display: inline-block;
14845
14937
  max-width: 100%;
14846
14938
  transition: box-shadow 0.15s ease-in-out; }
14939
+ @media (prefers-reduced-motion: reduce) {
14940
+ .table-title a {
14941
+ transition: none; } }
14847
14942
  .table-title a:hover {
14848
14943
  color: #272833; }
14849
14944
  .table-title a:focus {
@@ -14856,6 +14951,9 @@ caption {
14856
14951
  display: inline-block;
14857
14952
  max-width: 100%;
14858
14953
  transition: box-shadow 0.15s ease-in-out; }
14954
+ @media (prefers-reduced-motion: reduce) {
14955
+ .table-link {
14956
+ transition: none; } }
14859
14957
  .table-link:hover {
14860
14958
  color: #272833; }
14861
14959
  .table-link:focus {
@@ -14873,6 +14971,9 @@ caption {
14873
14971
  color: #6b6c7e;
14874
14972
  font-size: 1rem;
14875
14973
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
14974
+ @media (prefers-reduced-motion: reduce) {
14975
+ .table-action-link {
14976
+ transition: none; } }
14876
14977
  .table-action-link:hover {
14877
14978
  background-color: rgba(0, 0, 0, 0.02);
14878
14979
  color: #272833;
@@ -15112,6 +15213,9 @@ caption {
15112
15213
  display: inline-block;
15113
15214
  max-width: 100%;
15114
15215
  transition: box-shadow 0.15s ease-in-out; }
15216
+ @media (prefers-reduced-motion: reduce) {
15217
+ .table-list-title a {
15218
+ transition: none; } }
15115
15219
  .table-list-title a:hover {
15116
15220
  color: #272833; }
15117
15221
  .table-list-title a:focus {
@@ -15124,6 +15228,9 @@ caption {
15124
15228
  display: inline-block;
15125
15229
  max-width: 100%;
15126
15230
  transition: box-shadow 0.15s ease-in-out; }
15231
+ @media (prefers-reduced-motion: reduce) {
15232
+ .table-list-link {
15233
+ transition: none; } }
15127
15234
  .table-list-link:hover {
15128
15235
  color: #272833; }
15129
15236
  .table-list-link:focus {
@@ -15140,6 +15247,9 @@ caption {
15140
15247
  color: #6b6c7e;
15141
15248
  font-size: 1rem;
15142
15249
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
15250
+ @media (prefers-reduced-motion: reduce) {
15251
+ .table-list-action-link {
15252
+ transition: none; } }
15143
15253
  .table-list-action-link:hover {
15144
15254
  background-color: rgba(0, 0, 0, 0.02);
15145
15255
  color: #272833;
@@ -16502,6 +16612,9 @@ label.toggle-switch {
16502
16612
  width: 2rem; }
16503
16613
  .close::-ms-expand {
16504
16614
  display: none; }
16615
+ @media (prefers-reduced-motion: reduce) {
16616
+ .close {
16617
+ transition: none; } }
16505
16618
  .close:hover {
16506
16619
  color: #272833;
16507
16620
  opacity: 1;
@@ -19505,6 +19618,9 @@ button.bg-dark:focus {
19505
19618
  .d-xl-inline-flex {
19506
19619
  display: inline-flex !important; } }
19507
19620
 
19621
+ .hide {
19622
+ display: none !important; }
19623
+
19508
19624
  @media print {
19509
19625
  .d-print-none {
19510
19626
  display: none !important; }
@@ -19563,6 +19679,18 @@ button.bg-dark:focus {
19563
19679
  .embed-responsive-1by1::before {
19564
19680
  padding-top: 100%; }
19565
19681
 
19682
+ .embed-responsive-21by9::before {
19683
+ padding-top: 42.85714%; }
19684
+
19685
+ .embed-responsive-16by9::before {
19686
+ padding-top: 56.25%; }
19687
+
19688
+ .embed-responsive-4by3::before {
19689
+ padding-top: 75%; }
19690
+
19691
+ .embed-responsive-1by1::before {
19692
+ padding-top: 100%; }
19693
+
19566
19694
  /* REUSE-Snippet-End */
19567
19695
  .flex-row {
19568
19696
  flex-direction: row !important; }