@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.
- package/CHANGELOG.md +62 -0
- package/lib/css/atlas.css +300 -172
- package/lib/css/atlas.css.map +20 -20
- package/lib/css/base.css +199 -162
- package/lib/css/base.css.map +13 -13
- package/package.json +2 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_alerts.scss +1 -5
- package/src/scss/atlas/variables/_buttons.scss +79 -7
- package/src/scss/atlas/variables/_custom-forms.scss +1 -5
- package/src/scss/atlas/variables/_forms.scss +115 -40
- package/src/scss/atlas/variables/_globals.scss +362 -70
- package/src/scss/atlas/variables/_labels.scss +0 -4
- package/src/scss/atlas/variables/_pagination.scss +0 -4
- package/src/scss/cadmin/components/_buttons.scss +25 -263
- package/src/scss/cadmin/components/_forms.scss +24 -92
- package/src/scss/cadmin/components/_utilities-functional-important.scss +4 -0
- package/src/scss/cadmin/variables/_buttons.scss +249 -6
- package/src/scss/cadmin/variables/_forms.scss +124 -8
- package/src/scss/components/_buttons.scss +25 -259
- package/src/scss/components/_forms.scss +21 -92
- package/src/scss/components/_utilities-functional-important.scss +4 -0
- package/src/scss/functions/_global-functions.scss +16 -2
- package/src/scss/mixins/_buttons.scss +34 -7
- package/src/scss/mixins/_forms.scss +28 -3
- package/src/scss/mixins/_globals.scss +12 -0
- package/src/scss/variables/_buttons.scss +250 -7
- package/src/scss/variables/_custom-forms.scss +2 -3
- package/src/scss/variables/_forms.scss +145 -34
- package/src/scss/variables/_globals.scss +26 -24
package/lib/css/base.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
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>
|
|
@@ -976,7 +976,9 @@ button.collapse-icon {
|
|
|
976
976
|
|
|
977
977
|
.btn {
|
|
978
978
|
background-color: transparent;
|
|
979
|
-
border:
|
|
979
|
+
border-color: transparent;
|
|
980
|
+
border-style: solid;
|
|
981
|
+
border-width: 0.0625rem;
|
|
980
982
|
border-radius: 0.25rem;
|
|
981
983
|
color: #212529;
|
|
982
984
|
cursor: pointer;
|
|
@@ -984,10 +986,16 @@ button.collapse-icon {
|
|
|
984
986
|
font-size: 1rem;
|
|
985
987
|
font-weight: 400;
|
|
986
988
|
line-height: 1.5;
|
|
987
|
-
padding: 0.375rem
|
|
989
|
+
padding-bottom: 0.375rem;
|
|
990
|
+
padding-left: 0.75rem;
|
|
991
|
+
padding-right: 0.75rem;
|
|
992
|
+
padding-top: 0.375rem;
|
|
988
993
|
text-align: center;
|
|
989
994
|
text-transform: none;
|
|
990
995
|
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;
|
|
996
|
+
-ms-user-select: none;
|
|
997
|
+
-moz-user-select: none;
|
|
998
|
+
-webkit-user-select: none;
|
|
991
999
|
user-select: none;
|
|
992
1000
|
vertical-align: middle; }
|
|
993
1001
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -999,29 +1007,34 @@ button.collapse-icon {
|
|
|
999
1007
|
.btn:focus, .btn.focus {
|
|
1000
1008
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
1001
1009
|
outline: 0; }
|
|
1002
|
-
.btn:active:focus
|
|
1010
|
+
.btn:active:focus {
|
|
1003
1011
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
|
|
1004
|
-
.btn
|
|
1012
|
+
.btn:disabled, .btn.disabled {
|
|
1005
1013
|
cursor: not-allowed;
|
|
1006
1014
|
opacity: 0.65; }
|
|
1007
|
-
.btn
|
|
1015
|
+
.btn:disabled:focus, .btn.disabled:focus {
|
|
1008
1016
|
box-shadow: none; }
|
|
1009
|
-
.btn
|
|
1017
|
+
.btn:disabled:active, .btn.disabled:active {
|
|
1010
1018
|
pointer-events: none; }
|
|
1019
|
+
.btn .c-inner {
|
|
1020
|
+
margin-bottom: -0.375rem;
|
|
1021
|
+
margin-left: -0.75rem;
|
|
1022
|
+
margin-right: -0.75rem;
|
|
1023
|
+
margin-top: -0.375rem; }
|
|
1024
|
+
.btn .btn-section {
|
|
1025
|
+
display: block;
|
|
1026
|
+
font-size: 0.6875rem;
|
|
1027
|
+
font-weight: 400;
|
|
1028
|
+
line-height: 1; }
|
|
1011
1029
|
|
|
1012
1030
|
fieldset:disabled a.btn {
|
|
1013
|
-
box-shadow: none;
|
|
1014
1031
|
cursor: not-allowed;
|
|
1015
1032
|
opacity: 0.65; }
|
|
1033
|
+
fieldset:disabled a.btn:focus {
|
|
1034
|
+
box-shadow: none; }
|
|
1016
1035
|
fieldset:disabled a.btn:active {
|
|
1017
1036
|
pointer-events: none; }
|
|
1018
1037
|
|
|
1019
|
-
.btn-section {
|
|
1020
|
-
display: block;
|
|
1021
|
-
font-size: 0.6875rem;
|
|
1022
|
-
font-weight: 400;
|
|
1023
|
-
line-height: 1; }
|
|
1024
|
-
|
|
1025
1038
|
.btn-lg, .btn-group-lg > .btn,
|
|
1026
1039
|
.btn-group-lg .btn-group > .btn {
|
|
1027
1040
|
border-radius: 0.3rem;
|
|
@@ -1031,6 +1044,11 @@ fieldset:disabled a.btn {
|
|
|
1031
1044
|
padding-left: 1rem;
|
|
1032
1045
|
padding-right: 1rem;
|
|
1033
1046
|
padding-top: 0.5rem; }
|
|
1047
|
+
.btn-lg .c-inner, .btn-group-lg > .btn .c-inner, .btn-group-lg .btn-group > .btn .c-inner {
|
|
1048
|
+
margin-bottom: -0.5rem;
|
|
1049
|
+
margin-left: -1rem;
|
|
1050
|
+
margin-right: -1rem;
|
|
1051
|
+
margin-top: -0.5rem; }
|
|
1034
1052
|
.btn-lg .btn-section, .btn-group-lg > .btn .btn-section, .btn-group-lg .btn-group > .btn .btn-section {
|
|
1035
1053
|
font-size: 0.8125rem; }
|
|
1036
1054
|
|
|
@@ -1043,6 +1061,11 @@ fieldset:disabled a.btn {
|
|
|
1043
1061
|
padding-left: 0.5rem;
|
|
1044
1062
|
padding-right: 0.5rem;
|
|
1045
1063
|
padding-top: 0.25rem; }
|
|
1064
|
+
.btn-sm .c-inner, .btn-group-sm > .btn .c-inner, .btn-group-sm .btn-group > .btn .c-inner, .form-group-sm .btn .c-inner {
|
|
1065
|
+
margin-bottom: -0.25rem;
|
|
1066
|
+
margin-left: -0.5rem;
|
|
1067
|
+
margin-right: -0.5rem;
|
|
1068
|
+
margin-top: -0.25rem; }
|
|
1046
1069
|
.btn-sm .btn-section, .btn-group-sm > .btn .btn-section, .btn-group-sm .btn-group > .btn .btn-section, .form-group-sm .btn .btn-section {
|
|
1047
1070
|
font-size: 0.5625rem; }
|
|
1048
1071
|
|
|
@@ -1069,69 +1092,50 @@ input[type='button'].btn-block {
|
|
|
1069
1092
|
text-align: left;
|
|
1070
1093
|
text-transform: inherit;
|
|
1071
1094
|
vertical-align: baseline; }
|
|
1095
|
+
.btn-unstyled .c-inner, .menubar-toggler .c-inner {
|
|
1096
|
+
margin: 0;
|
|
1097
|
+
max-width: none; }
|
|
1072
1098
|
|
|
1073
1099
|
.btn-monospaced {
|
|
1100
|
+
align-items: center;
|
|
1101
|
+
display: inline-flex;
|
|
1102
|
+
flex-direction: column;
|
|
1074
1103
|
height: 2.375rem;
|
|
1104
|
+
justify-content: center;
|
|
1075
1105
|
line-height: 1;
|
|
1076
1106
|
overflow: hidden;
|
|
1077
|
-
padding-bottom: 0
|
|
1107
|
+
padding-bottom: 0;
|
|
1078
1108
|
padding-left: 0;
|
|
1079
1109
|
padding-right: 0;
|
|
1080
|
-
padding-top: 0
|
|
1110
|
+
padding-top: 0;
|
|
1081
1111
|
text-align: center;
|
|
1082
1112
|
white-space: normal;
|
|
1083
1113
|
width: 2.375rem;
|
|
1114
|
+
overflow-wrap: break-word;
|
|
1084
1115
|
word-wrap: break-word; }
|
|
1116
|
+
.btn-monospaced .c-inner {
|
|
1117
|
+
margin-bottom: 0;
|
|
1118
|
+
margin-left: 0;
|
|
1119
|
+
margin-right: 0;
|
|
1120
|
+
margin-top: 0;
|
|
1121
|
+
align-items: center;
|
|
1122
|
+
display: flex;
|
|
1123
|
+
flex-direction: column;
|
|
1124
|
+
height: 100%;
|
|
1125
|
+
justify-content: center;
|
|
1126
|
+
padding: 0;
|
|
1127
|
+
width: 100%; }
|
|
1085
1128
|
.btn-monospaced.btn .lexicon-icon {
|
|
1086
1129
|
margin-top: 0; }
|
|
1087
1130
|
|
|
1088
1131
|
.btn-monospaced.btn-lg, .btn-group-lg .btn-monospaced, .btn-group-vertical > .btn-monospaced.btn-lg {
|
|
1089
1132
|
height: 3rem;
|
|
1090
|
-
padding-bottom: 0.3125rem;
|
|
1091
|
-
padding-left: 0;
|
|
1092
|
-
padding-right: 0;
|
|
1093
|
-
padding-top: 0.3125rem;
|
|
1094
1133
|
width: 3rem; }
|
|
1095
1134
|
|
|
1096
1135
|
.btn-monospaced.btn-sm, .btn-group-sm .btn-monospaced, .btn-group-vertical > .btn-monospaced.btn-sm {
|
|
1097
1136
|
height: 1.9375rem;
|
|
1098
|
-
padding-bottom: 0.125rem;
|
|
1099
|
-
padding-left: 0;
|
|
1100
|
-
padding-right: 0;
|
|
1101
|
-
padding-top: 0.125rem;
|
|
1102
1137
|
width: 1.9375rem; }
|
|
1103
1138
|
|
|
1104
|
-
.btn .c-inner {
|
|
1105
|
-
margin: -0.375rem -0.75rem; }
|
|
1106
|
-
|
|
1107
|
-
.btn-unstyled .c-inner {
|
|
1108
|
-
margin: 0;
|
|
1109
|
-
max-width: none; }
|
|
1110
|
-
|
|
1111
|
-
.btn-monospaced .c-inner {
|
|
1112
|
-
align-items: center;
|
|
1113
|
-
display: flex;
|
|
1114
|
-
flex-direction: column;
|
|
1115
|
-
height: calc(100% + 0.375rem);
|
|
1116
|
-
justify-content: center;
|
|
1117
|
-
margin: -0.1875rem 0;
|
|
1118
|
-
padding: 0;
|
|
1119
|
-
width: 100%; }
|
|
1120
|
-
|
|
1121
|
-
.btn-sm .c-inner {
|
|
1122
|
-
margin: -0.25rem -0.5rem; }
|
|
1123
|
-
|
|
1124
|
-
.btn-sm.btn-monospaced .c-inner {
|
|
1125
|
-
height: calc(100% + 0.25rem);
|
|
1126
|
-
margin: -0.125rem 0; }
|
|
1127
|
-
|
|
1128
|
-
.btn-lg .c-inner {
|
|
1129
|
-
margin: -0.5rem -1rem; }
|
|
1130
|
-
|
|
1131
|
-
.btn-lg.btn-monospaced .c-inner {
|
|
1132
|
-
height: calc(100% + 0.625rem);
|
|
1133
|
-
margin: -0.3125rem 0; }
|
|
1134
|
-
|
|
1135
1139
|
.btn-primary {
|
|
1136
1140
|
background-color: #007bff;
|
|
1137
1141
|
border-color: #007bff;
|
|
@@ -1140,7 +1144,7 @@ input[type='button'].btn-block {
|
|
|
1140
1144
|
background-color: #0069d9;
|
|
1141
1145
|
border-color: #0062cc;
|
|
1142
1146
|
color: #fff; }
|
|
1143
|
-
.btn-primary:focus, .btn-primary
|
|
1147
|
+
.btn-primary:focus, .focus.btn-primary {
|
|
1144
1148
|
background-color: #0069d9;
|
|
1145
1149
|
border-color: #0062cc;
|
|
1146
1150
|
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
|
|
@@ -1151,12 +1155,12 @@ input[type='button'].btn-block {
|
|
|
1151
1155
|
color: #fff; }
|
|
1152
1156
|
.btn-primary:active:focus {
|
|
1153
1157
|
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); }
|
|
1154
|
-
.btn-primary[aria-expanded='true'], .btn-primary
|
|
1155
|
-
.show > .btn-primary
|
|
1158
|
+
.btn-primary[aria-expanded='true'], .active.btn-primary, .show.btn-primary,
|
|
1159
|
+
.show > .dropdown-toggle.btn-primary {
|
|
1156
1160
|
background-color: #0062cc;
|
|
1157
1161
|
border-color: #005cbf;
|
|
1158
1162
|
color: #fff; }
|
|
1159
|
-
.btn-primary:disabled, .btn-primary
|
|
1163
|
+
.btn-primary:disabled, .disabled.btn-primary {
|
|
1160
1164
|
background-color: #007bff;
|
|
1161
1165
|
border-color: #007bff;
|
|
1162
1166
|
color: #fff; }
|
|
@@ -1169,7 +1173,7 @@ input[type='button'].btn-block {
|
|
|
1169
1173
|
background-color: #5a6268;
|
|
1170
1174
|
border-color: #545b62;
|
|
1171
1175
|
color: #fff; }
|
|
1172
|
-
.btn-secondary:focus, .btn-secondary
|
|
1176
|
+
.btn-secondary:focus, .focus.btn-secondary {
|
|
1173
1177
|
background-color: #5a6268;
|
|
1174
1178
|
border-color: #545b62;
|
|
1175
1179
|
box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
|
|
@@ -1180,12 +1184,12 @@ input[type='button'].btn-block {
|
|
|
1180
1184
|
color: #fff; }
|
|
1181
1185
|
.btn-secondary:active:focus {
|
|
1182
1186
|
box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); }
|
|
1183
|
-
.btn-secondary[aria-expanded='true'], .btn-secondary
|
|
1184
|
-
.show > .btn-secondary
|
|
1187
|
+
.btn-secondary[aria-expanded='true'], .active.btn-secondary, .show.btn-secondary,
|
|
1188
|
+
.show > .dropdown-toggle.btn-secondary {
|
|
1185
1189
|
background-color: #545b62;
|
|
1186
1190
|
border-color: #4e555b;
|
|
1187
1191
|
color: #fff; }
|
|
1188
|
-
.btn-secondary:disabled, .btn-secondary
|
|
1192
|
+
.btn-secondary:disabled, .disabled.btn-secondary {
|
|
1189
1193
|
background-color: #6c757d;
|
|
1190
1194
|
border-color: #6c757d;
|
|
1191
1195
|
color: #fff; }
|
|
@@ -1198,7 +1202,7 @@ input[type='button'].btn-block {
|
|
|
1198
1202
|
background-color: #218838;
|
|
1199
1203
|
border-color: #1e7e34;
|
|
1200
1204
|
color: #fff; }
|
|
1201
|
-
.btn-success:focus, .btn-success
|
|
1205
|
+
.btn-success:focus, .focus.btn-success {
|
|
1202
1206
|
background-color: #218838;
|
|
1203
1207
|
border-color: #1e7e34;
|
|
1204
1208
|
box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
|
|
@@ -1209,12 +1213,12 @@ input[type='button'].btn-block {
|
|
|
1209
1213
|
color: #fff; }
|
|
1210
1214
|
.btn-success:active:focus {
|
|
1211
1215
|
box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); }
|
|
1212
|
-
.btn-success[aria-expanded='true'], .btn-success
|
|
1213
|
-
.show > .btn-success
|
|
1216
|
+
.btn-success[aria-expanded='true'], .active.btn-success, .show.btn-success,
|
|
1217
|
+
.show > .dropdown-toggle.btn-success {
|
|
1214
1218
|
background-color: #1e7e34;
|
|
1215
1219
|
border-color: #1c7430;
|
|
1216
1220
|
color: #fff; }
|
|
1217
|
-
.btn-success:disabled, .btn-success
|
|
1221
|
+
.btn-success:disabled, .disabled.btn-success {
|
|
1218
1222
|
background-color: #28a745;
|
|
1219
1223
|
border-color: #28a745;
|
|
1220
1224
|
color: #fff; }
|
|
@@ -1227,7 +1231,7 @@ input[type='button'].btn-block {
|
|
|
1227
1231
|
background-color: #138496;
|
|
1228
1232
|
border-color: #117a8b;
|
|
1229
1233
|
color: #fff; }
|
|
1230
|
-
.btn-info:focus, .btn-info
|
|
1234
|
+
.btn-info:focus, .focus.btn-info {
|
|
1231
1235
|
background-color: #138496;
|
|
1232
1236
|
border-color: #117a8b;
|
|
1233
1237
|
box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
|
|
@@ -1238,12 +1242,12 @@ input[type='button'].btn-block {
|
|
|
1238
1242
|
color: #fff; }
|
|
1239
1243
|
.btn-info:active:focus {
|
|
1240
1244
|
box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); }
|
|
1241
|
-
.btn-info[aria-expanded='true'], .btn-info
|
|
1242
|
-
.show > .btn-info
|
|
1245
|
+
.btn-info[aria-expanded='true'], .active.btn-info, .show.btn-info,
|
|
1246
|
+
.show > .dropdown-toggle.btn-info {
|
|
1243
1247
|
background-color: #117a8b;
|
|
1244
1248
|
border-color: #10707f;
|
|
1245
1249
|
color: #fff; }
|
|
1246
|
-
.btn-info:disabled, .btn-info
|
|
1250
|
+
.btn-info:disabled, .disabled.btn-info {
|
|
1247
1251
|
background-color: #17a2b8;
|
|
1248
1252
|
border-color: #17a2b8;
|
|
1249
1253
|
color: #fff; }
|
|
@@ -1256,7 +1260,7 @@ input[type='button'].btn-block {
|
|
|
1256
1260
|
background-color: #e0a800;
|
|
1257
1261
|
border-color: #d39e00;
|
|
1258
1262
|
color: #212529; }
|
|
1259
|
-
.btn-warning:focus, .btn-warning
|
|
1263
|
+
.btn-warning:focus, .focus.btn-warning {
|
|
1260
1264
|
background-color: #e0a800;
|
|
1261
1265
|
border-color: #d39e00;
|
|
1262
1266
|
box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
|
|
@@ -1267,12 +1271,12 @@ input[type='button'].btn-block {
|
|
|
1267
1271
|
color: #212529; }
|
|
1268
1272
|
.btn-warning:active:focus {
|
|
1269
1273
|
box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); }
|
|
1270
|
-
.btn-warning[aria-expanded='true'], .btn-warning
|
|
1271
|
-
.show > .btn-warning
|
|
1274
|
+
.btn-warning[aria-expanded='true'], .active.btn-warning, .show.btn-warning,
|
|
1275
|
+
.show > .dropdown-toggle.btn-warning {
|
|
1272
1276
|
background-color: #d39e00;
|
|
1273
1277
|
border-color: #c69500;
|
|
1274
1278
|
color: #212529; }
|
|
1275
|
-
.btn-warning:disabled, .btn-warning
|
|
1279
|
+
.btn-warning:disabled, .disabled.btn-warning {
|
|
1276
1280
|
background-color: #ffc107;
|
|
1277
1281
|
border-color: #ffc107;
|
|
1278
1282
|
color: #212529; }
|
|
@@ -1285,7 +1289,7 @@ input[type='button'].btn-block {
|
|
|
1285
1289
|
background-color: #c82333;
|
|
1286
1290
|
border-color: #bd2130;
|
|
1287
1291
|
color: #fff; }
|
|
1288
|
-
.btn-danger:focus, .btn-danger
|
|
1292
|
+
.btn-danger:focus, .focus.btn-danger {
|
|
1289
1293
|
background-color: #c82333;
|
|
1290
1294
|
border-color: #bd2130;
|
|
1291
1295
|
box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
|
|
@@ -1296,12 +1300,12 @@ input[type='button'].btn-block {
|
|
|
1296
1300
|
color: #fff; }
|
|
1297
1301
|
.btn-danger:active:focus {
|
|
1298
1302
|
box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); }
|
|
1299
|
-
.btn-danger[aria-expanded='true'], .btn-danger
|
|
1300
|
-
.show > .btn-danger
|
|
1303
|
+
.btn-danger[aria-expanded='true'], .active.btn-danger, .show.btn-danger,
|
|
1304
|
+
.show > .dropdown-toggle.btn-danger {
|
|
1301
1305
|
background-color: #bd2130;
|
|
1302
1306
|
border-color: #b21f2d;
|
|
1303
1307
|
color: #fff; }
|
|
1304
|
-
.btn-danger:disabled, .btn-danger
|
|
1308
|
+
.btn-danger:disabled, .disabled.btn-danger {
|
|
1305
1309
|
background-color: #dc3545;
|
|
1306
1310
|
border-color: #dc3545;
|
|
1307
1311
|
color: #fff; }
|
|
@@ -1314,7 +1318,7 @@ input[type='button'].btn-block {
|
|
|
1314
1318
|
background-color: #e2e6ea;
|
|
1315
1319
|
border-color: #dae0e5;
|
|
1316
1320
|
color: #212529; }
|
|
1317
|
-
.btn-light:focus, .btn-light
|
|
1321
|
+
.btn-light:focus, .focus.btn-light {
|
|
1318
1322
|
background-color: #e2e6ea;
|
|
1319
1323
|
border-color: #dae0e5;
|
|
1320
1324
|
box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
|
|
@@ -1325,12 +1329,12 @@ input[type='button'].btn-block {
|
|
|
1325
1329
|
color: #212529; }
|
|
1326
1330
|
.btn-light:active:focus {
|
|
1327
1331
|
box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); }
|
|
1328
|
-
.btn-light[aria-expanded='true'], .btn-light
|
|
1329
|
-
.show > .btn-light
|
|
1332
|
+
.btn-light[aria-expanded='true'], .active.btn-light, .show.btn-light,
|
|
1333
|
+
.show > .dropdown-toggle.btn-light {
|
|
1330
1334
|
background-color: #dae0e5;
|
|
1331
1335
|
border-color: #d3d9df;
|
|
1332
1336
|
color: #212529; }
|
|
1333
|
-
.btn-light:disabled, .btn-light
|
|
1337
|
+
.btn-light:disabled, .disabled.btn-light {
|
|
1334
1338
|
background-color: #f8f9fa;
|
|
1335
1339
|
border-color: #f8f9fa;
|
|
1336
1340
|
color: #212529; }
|
|
@@ -1343,7 +1347,7 @@ input[type='button'].btn-block {
|
|
|
1343
1347
|
background-color: #23272b;
|
|
1344
1348
|
border-color: #1d2124;
|
|
1345
1349
|
color: #fff; }
|
|
1346
|
-
.btn-dark:focus, .btn-dark
|
|
1350
|
+
.btn-dark:focus, .focus.btn-dark {
|
|
1347
1351
|
background-color: #23272b;
|
|
1348
1352
|
border-color: #1d2124;
|
|
1349
1353
|
box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
|
|
@@ -1354,12 +1358,12 @@ input[type='button'].btn-block {
|
|
|
1354
1358
|
color: #fff; }
|
|
1355
1359
|
.btn-dark:active:focus {
|
|
1356
1360
|
box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); }
|
|
1357
|
-
.btn-dark[aria-expanded='true'], .btn-dark
|
|
1358
|
-
.show > .btn-dark
|
|
1361
|
+
.btn-dark[aria-expanded='true'], .active.btn-dark, .show.btn-dark,
|
|
1362
|
+
.show > .dropdown-toggle.btn-dark {
|
|
1359
1363
|
background-color: #1d2124;
|
|
1360
1364
|
border-color: #171a1d;
|
|
1361
1365
|
color: #fff; }
|
|
1362
|
-
.btn-dark:disabled, .btn-dark
|
|
1366
|
+
.btn-dark:disabled, .disabled.btn-dark {
|
|
1363
1367
|
background-color: #343a40;
|
|
1364
1368
|
border-color: #343a40;
|
|
1365
1369
|
color: #fff; }
|
|
@@ -1372,12 +1376,12 @@ input[type='button'].btn-block {
|
|
|
1372
1376
|
.btn-link:hover {
|
|
1373
1377
|
color: #0056b3;
|
|
1374
1378
|
text-decoration: underline; }
|
|
1375
|
-
.btn-link:focus, .btn-link
|
|
1379
|
+
.btn-link:focus, .focus.btn-link {
|
|
1376
1380
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
1377
1381
|
text-decoration: none; }
|
|
1378
1382
|
.btn-link:active:focus {
|
|
1379
1383
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
|
|
1380
|
-
.btn-link:disabled, .btn-link
|
|
1384
|
+
.btn-link:disabled, .disabled.btn-link {
|
|
1381
1385
|
box-shadow: none;
|
|
1382
1386
|
color: #6c757d;
|
|
1383
1387
|
text-decoration: none; }
|
|
@@ -1389,18 +1393,18 @@ input[type='button'].btn-block {
|
|
|
1389
1393
|
background-color: #007bff;
|
|
1390
1394
|
border-color: #007bff;
|
|
1391
1395
|
color: #fff; }
|
|
1392
|
-
.btn-outline-primary:focus, .btn-outline-primary
|
|
1396
|
+
.btn-outline-primary:focus, .focus.btn-outline-primary {
|
|
1393
1397
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
|
|
1394
1398
|
.btn-outline-primary:active {
|
|
1395
1399
|
background-color: #007bff;
|
|
1396
1400
|
border-color: #007bff;
|
|
1397
1401
|
color: #fff; }
|
|
1398
|
-
.btn-outline-primary[aria-expanded='true'], .btn-outline-primary
|
|
1399
|
-
.show > .btn-outline-primary
|
|
1402
|
+
.btn-outline-primary[aria-expanded='true'], .active.btn-outline-primary, .show.btn-outline-primary,
|
|
1403
|
+
.show > .dropdown-toggle.btn-outline-primary {
|
|
1400
1404
|
background-color: #007bff;
|
|
1401
1405
|
border-color: #007bff;
|
|
1402
1406
|
color: #fff; }
|
|
1403
|
-
.btn-outline-primary:disabled, .btn-outline-primary
|
|
1407
|
+
.btn-outline-primary:disabled, .disabled.btn-outline-primary {
|
|
1404
1408
|
background-color: transparent;
|
|
1405
1409
|
color: #007bff; }
|
|
1406
1410
|
|
|
@@ -1411,7 +1415,7 @@ input[type='button'].btn-block {
|
|
|
1411
1415
|
background-color: #6c757d;
|
|
1412
1416
|
border-color: #6c757d;
|
|
1413
1417
|
color: #fff; }
|
|
1414
|
-
.btn-outline-secondary:focus, .btn-outline-secondary
|
|
1418
|
+
.btn-outline-secondary:focus, .focus.btn-outline-secondary {
|
|
1415
1419
|
box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
|
|
1416
1420
|
.btn-outline-secondary:active {
|
|
1417
1421
|
background-color: #6c757d;
|
|
@@ -1419,12 +1423,12 @@ input[type='button'].btn-block {
|
|
|
1419
1423
|
color: #fff; }
|
|
1420
1424
|
.btn-outline-secondary:active:focus {
|
|
1421
1425
|
box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
|
|
1422
|
-
.btn-outline-secondary[aria-expanded='true'], .btn-outline-secondary
|
|
1423
|
-
.show > .btn-outline-secondary
|
|
1426
|
+
.btn-outline-secondary[aria-expanded='true'], .active.btn-outline-secondary, .show.btn-outline-secondary,
|
|
1427
|
+
.show > .dropdown-toggle.btn-outline-secondary {
|
|
1424
1428
|
background-color: #6c757d;
|
|
1425
1429
|
border-color: #6c757d;
|
|
1426
1430
|
color: #fff; }
|
|
1427
|
-
.btn-outline-secondary:disabled, .btn-outline-secondary
|
|
1431
|
+
.btn-outline-secondary:disabled, .disabled.btn-outline-secondary {
|
|
1428
1432
|
background-color: transparent;
|
|
1429
1433
|
color: #6c757d; }
|
|
1430
1434
|
|
|
@@ -1435,7 +1439,7 @@ input[type='button'].btn-block {
|
|
|
1435
1439
|
background-color: #28a745;
|
|
1436
1440
|
border-color: #28a745;
|
|
1437
1441
|
color: #fff; }
|
|
1438
|
-
.btn-outline-success:focus, .btn-outline-success
|
|
1442
|
+
.btn-outline-success:focus, .focus.btn-outline-success {
|
|
1439
1443
|
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
|
|
1440
1444
|
.btn-outline-success:active {
|
|
1441
1445
|
background-color: #28a745;
|
|
@@ -1443,12 +1447,12 @@ input[type='button'].btn-block {
|
|
|
1443
1447
|
color: #fff; }
|
|
1444
1448
|
.btn-outline-success:active:focus {
|
|
1445
1449
|
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
|
|
1446
|
-
.btn-outline-success[aria-expanded='true'], .btn-outline-success
|
|
1447
|
-
.show > .btn-outline-success
|
|
1450
|
+
.btn-outline-success[aria-expanded='true'], .active.btn-outline-success, .show.btn-outline-success,
|
|
1451
|
+
.show > .dropdown-toggle.btn-outline-success {
|
|
1448
1452
|
background-color: #28a745;
|
|
1449
1453
|
border-color: #28a745;
|
|
1450
1454
|
color: #fff; }
|
|
1451
|
-
.btn-outline-success:disabled, .btn-outline-success
|
|
1455
|
+
.btn-outline-success:disabled, .disabled.btn-outline-success {
|
|
1452
1456
|
background-color: transparent;
|
|
1453
1457
|
color: #28a745; }
|
|
1454
1458
|
|
|
@@ -1459,7 +1463,7 @@ input[type='button'].btn-block {
|
|
|
1459
1463
|
background-color: #17a2b8;
|
|
1460
1464
|
border-color: #17a2b8;
|
|
1461
1465
|
color: #fff; }
|
|
1462
|
-
.btn-outline-info:focus, .btn-outline-info
|
|
1466
|
+
.btn-outline-info:focus, .focus.btn-outline-info {
|
|
1463
1467
|
box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
|
|
1464
1468
|
.btn-outline-info:active {
|
|
1465
1469
|
background-color: #17a2b8;
|
|
@@ -1467,12 +1471,12 @@ input[type='button'].btn-block {
|
|
|
1467
1471
|
color: #fff; }
|
|
1468
1472
|
.btn-outline-info:active:focus {
|
|
1469
1473
|
box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
|
|
1470
|
-
.btn-outline-info[aria-expanded='true'], .btn-outline-info
|
|
1471
|
-
.show > .btn-outline-info
|
|
1474
|
+
.btn-outline-info[aria-expanded='true'], .active.btn-outline-info, .show.btn-outline-info,
|
|
1475
|
+
.show > .dropdown-toggle.btn-outline-info {
|
|
1472
1476
|
background-color: #17a2b8;
|
|
1473
1477
|
border-color: #17a2b8;
|
|
1474
1478
|
color: #fff; }
|
|
1475
|
-
.btn-outline-info:disabled, .btn-outline-info
|
|
1479
|
+
.btn-outline-info:disabled, .disabled.btn-outline-info {
|
|
1476
1480
|
background-color: transparent;
|
|
1477
1481
|
color: #17a2b8; }
|
|
1478
1482
|
|
|
@@ -1483,7 +1487,7 @@ input[type='button'].btn-block {
|
|
|
1483
1487
|
background-color: #ffc107;
|
|
1484
1488
|
border-color: #ffc107;
|
|
1485
1489
|
color: #212529; }
|
|
1486
|
-
.btn-outline-warning:focus, .btn-outline-warning
|
|
1490
|
+
.btn-outline-warning:focus, .focus.btn-outline-warning {
|
|
1487
1491
|
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
|
|
1488
1492
|
.btn-outline-warning:active {
|
|
1489
1493
|
background-color: #ffc107;
|
|
@@ -1491,12 +1495,12 @@ input[type='button'].btn-block {
|
|
|
1491
1495
|
color: #212529; }
|
|
1492
1496
|
.btn-outline-warning:active:focus {
|
|
1493
1497
|
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
|
|
1494
|
-
.btn-outline-warning[aria-expanded='true'], .btn-outline-warning
|
|
1495
|
-
.show > .btn-outline-warning
|
|
1498
|
+
.btn-outline-warning[aria-expanded='true'], .active.btn-outline-warning, .show.btn-outline-warning,
|
|
1499
|
+
.show > .dropdown-toggle.btn-outline-warning {
|
|
1496
1500
|
background-color: #ffc107;
|
|
1497
1501
|
border-color: #ffc107;
|
|
1498
1502
|
color: #212529; }
|
|
1499
|
-
.btn-outline-warning:disabled, .btn-outline-warning
|
|
1503
|
+
.btn-outline-warning:disabled, .disabled.btn-outline-warning {
|
|
1500
1504
|
background-color: transparent;
|
|
1501
1505
|
color: #ffc107; }
|
|
1502
1506
|
|
|
@@ -1507,7 +1511,7 @@ input[type='button'].btn-block {
|
|
|
1507
1511
|
background-color: #dc3545;
|
|
1508
1512
|
border-color: #dc3545;
|
|
1509
1513
|
color: #fff; }
|
|
1510
|
-
.btn-outline-danger:focus, .btn-outline-danger
|
|
1514
|
+
.btn-outline-danger:focus, .focus.btn-outline-danger {
|
|
1511
1515
|
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
|
|
1512
1516
|
.btn-outline-danger:active {
|
|
1513
1517
|
background-color: #dc3545;
|
|
@@ -1515,12 +1519,12 @@ input[type='button'].btn-block {
|
|
|
1515
1519
|
color: #fff; }
|
|
1516
1520
|
.btn-outline-danger:active:focus {
|
|
1517
1521
|
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
|
|
1518
|
-
.btn-outline-danger[aria-expanded='true'], .btn-outline-danger
|
|
1519
|
-
.show > .btn-outline-danger
|
|
1522
|
+
.btn-outline-danger[aria-expanded='true'], .active.btn-outline-danger, .show.btn-outline-danger,
|
|
1523
|
+
.show > .dropdown-toggle.btn-outline-danger {
|
|
1520
1524
|
background-color: #dc3545;
|
|
1521
1525
|
border-color: #dc3545;
|
|
1522
1526
|
color: #fff; }
|
|
1523
|
-
.btn-outline-danger:disabled, .btn-outline-danger
|
|
1527
|
+
.btn-outline-danger:disabled, .disabled.btn-outline-danger {
|
|
1524
1528
|
background-color: transparent;
|
|
1525
1529
|
color: #dc3545; }
|
|
1526
1530
|
|
|
@@ -1531,7 +1535,7 @@ input[type='button'].btn-block {
|
|
|
1531
1535
|
background-color: #f8f9fa;
|
|
1532
1536
|
border-color: #f8f9fa;
|
|
1533
1537
|
color: #212529; }
|
|
1534
|
-
.btn-outline-light:focus, .btn-outline-light
|
|
1538
|
+
.btn-outline-light:focus, .focus.btn-outline-light {
|
|
1535
1539
|
box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
|
|
1536
1540
|
.btn-outline-light:active {
|
|
1537
1541
|
background-color: #f8f9fa;
|
|
@@ -1539,12 +1543,12 @@ input[type='button'].btn-block {
|
|
|
1539
1543
|
color: #212529; }
|
|
1540
1544
|
.btn-outline-light:active:focus {
|
|
1541
1545
|
box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
|
|
1542
|
-
.btn-outline-light[aria-expanded='true'], .btn-outline-light
|
|
1543
|
-
.show > .btn-outline-light
|
|
1546
|
+
.btn-outline-light[aria-expanded='true'], .active.btn-outline-light, .show.btn-outline-light,
|
|
1547
|
+
.show > .dropdown-toggle.btn-outline-light {
|
|
1544
1548
|
background-color: #f8f9fa;
|
|
1545
1549
|
border-color: #f8f9fa;
|
|
1546
1550
|
color: #212529; }
|
|
1547
|
-
.btn-outline-light:disabled, .btn-outline-light
|
|
1551
|
+
.btn-outline-light:disabled, .disabled.btn-outline-light {
|
|
1548
1552
|
background-color: transparent;
|
|
1549
1553
|
color: #f8f9fa; }
|
|
1550
1554
|
|
|
@@ -1555,7 +1559,7 @@ input[type='button'].btn-block {
|
|
|
1555
1559
|
background-color: #343a40;
|
|
1556
1560
|
border-color: #343a40;
|
|
1557
1561
|
color: #fff; }
|
|
1558
|
-
.btn-outline-dark:focus, .btn-outline-dark
|
|
1562
|
+
.btn-outline-dark:focus, .focus.btn-outline-dark {
|
|
1559
1563
|
box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
|
|
1560
1564
|
.btn-outline-dark:active {
|
|
1561
1565
|
background-color: #343a40;
|
|
@@ -1563,18 +1567,20 @@ input[type='button'].btn-block {
|
|
|
1563
1567
|
color: #fff; }
|
|
1564
1568
|
.btn-outline-dark:active:focus {
|
|
1565
1569
|
box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
|
|
1566
|
-
.btn-outline-dark[aria-expanded='true'], .btn-outline-dark
|
|
1567
|
-
.show > .btn-outline-dark
|
|
1570
|
+
.btn-outline-dark[aria-expanded='true'], .active.btn-outline-dark, .show.btn-outline-dark,
|
|
1571
|
+
.show > .dropdown-toggle.btn-outline-dark {
|
|
1568
1572
|
background-color: #343a40;
|
|
1569
1573
|
border-color: #343a40;
|
|
1570
1574
|
color: #fff; }
|
|
1571
|
-
.btn-outline-dark:disabled, .btn-outline-dark
|
|
1575
|
+
.btn-outline-dark:disabled, .disabled.btn-outline-dark {
|
|
1572
1576
|
background-color: transparent;
|
|
1573
1577
|
color: #343a40; }
|
|
1574
1578
|
|
|
1575
1579
|
.btn-outline-borderless {
|
|
1576
1580
|
border-color: transparent; }
|
|
1577
|
-
.btn-outline-borderless:hover
|
|
1581
|
+
.btn-outline-borderless:hover {
|
|
1582
|
+
border-color: transparent; }
|
|
1583
|
+
.btn-outline-borderless:focus, .btn-outline-borderless.focus {
|
|
1578
1584
|
border-color: transparent; }
|
|
1579
1585
|
.btn-outline-borderless:disabled, .btn-outline-borderless.disabled {
|
|
1580
1586
|
border-color: transparent; }
|
|
@@ -4422,6 +4428,10 @@ button.label {
|
|
|
4422
4428
|
cursor: pointer;
|
|
4423
4429
|
outline: 0;
|
|
4424
4430
|
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; }
|
|
4431
|
+
@media (prefers-reduced-motion: reduce) {
|
|
4432
|
+
.card-interactive.card,
|
|
4433
|
+
.card-interactive .card {
|
|
4434
|
+
transition: none; } }
|
|
4425
4435
|
.card-interactive.card:hover,
|
|
4426
4436
|
.card-interactive .card:hover {
|
|
4427
4437
|
background-color: #f8f9fa;
|
|
@@ -4444,6 +4454,9 @@ button.label {
|
|
|
4444
4454
|
position: absolute;
|
|
4445
4455
|
right: -0.0625rem;
|
|
4446
4456
|
transition: height 0.15s ease-out; }
|
|
4457
|
+
@media (prefers-reduced-motion: reduce) {
|
|
4458
|
+
.card-interactive::after {
|
|
4459
|
+
transition: none; } }
|
|
4447
4460
|
|
|
4448
4461
|
.card-interactive:hover::after, .card-interactive.hover::after {
|
|
4449
4462
|
height: 4px; }
|
|
@@ -5189,6 +5202,9 @@ button.label {
|
|
|
5189
5202
|
flex-grow: 1;
|
|
5190
5203
|
overflow: hidden;
|
|
5191
5204
|
transition: height 0.25s ease; }
|
|
5205
|
+
@media (prefers-reduced-motion: reduce) {
|
|
5206
|
+
.drilldown-inner {
|
|
5207
|
+
transition: none; } }
|
|
5192
5208
|
|
|
5193
5209
|
.drilldown-item {
|
|
5194
5210
|
display: none;
|
|
@@ -5341,6 +5357,7 @@ fieldset {
|
|
|
5341
5357
|
label {
|
|
5342
5358
|
margin-bottom: 0.5rem;
|
|
5343
5359
|
max-width: 100%;
|
|
5360
|
+
overflow-wrap: break-word;
|
|
5344
5361
|
word-wrap: break-word; }
|
|
5345
5362
|
label[for] {
|
|
5346
5363
|
cursor: pointer; }
|
|
@@ -5359,12 +5376,14 @@ label {
|
|
|
5359
5376
|
display: inline-block;
|
|
5360
5377
|
margin-bottom: 0.5rem;
|
|
5361
5378
|
max-width: 100%;
|
|
5379
|
+
overflow-wrap: break-word;
|
|
5362
5380
|
word-wrap: break-word; }
|
|
5363
5381
|
|
|
5364
5382
|
.form-control {
|
|
5365
5383
|
background-color: #fff;
|
|
5366
5384
|
border-color: #ced4da;
|
|
5367
5385
|
border-style: solid;
|
|
5386
|
+
border-width: 0.0625rem;
|
|
5368
5387
|
border-bottom-width: 0.0625rem;
|
|
5369
5388
|
border-left-width: 0.0625rem;
|
|
5370
5389
|
border-right-width: 0.0625rem;
|
|
@@ -5381,8 +5400,8 @@ label {
|
|
|
5381
5400
|
padding-left: 0.75rem;
|
|
5382
5401
|
padding-right: 0.75rem;
|
|
5383
5402
|
padding-top: 0.375rem;
|
|
5384
|
-
|
|
5385
|
-
|
|
5403
|
+
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
5404
|
+
width: 100%; }
|
|
5386
5405
|
@media (prefers-reduced-motion: reduce) {
|
|
5387
5406
|
.form-control {
|
|
5388
5407
|
transition: none; } }
|
|
@@ -5688,6 +5707,9 @@ fieldset[disabled] .form-control, .form-control[disabled] {
|
|
|
5688
5707
|
border-radius: 0.25rem;
|
|
5689
5708
|
outline: 0;
|
|
5690
5709
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
|
|
5710
|
+
@media (prefers-reduced-motion: reduce) {
|
|
5711
|
+
.form-control-plaintext[readonly] {
|
|
5712
|
+
transition: none; } }
|
|
5691
5713
|
.form-control-plaintext[readonly]:focus, .form-control-plaintext[readonly].focus {
|
|
5692
5714
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
|
|
5693
5715
|
|
|
@@ -5931,6 +5953,9 @@ button.link-outline {
|
|
|
5931
5953
|
padding-top: 0.25rem;
|
|
5932
5954
|
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;
|
|
5933
5955
|
vertical-align: middle; }
|
|
5956
|
+
@media (prefers-reduced-motion: reduce) {
|
|
5957
|
+
.link-outline {
|
|
5958
|
+
transition: none; } }
|
|
5934
5959
|
.link-outline:hover {
|
|
5935
5960
|
text-decoration: none; }
|
|
5936
5961
|
.link-outline:disabled:active, .link-outline.disabled:active {
|
|
@@ -6051,6 +6076,9 @@ button.link-outline {
|
|
|
6051
6076
|
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;
|
|
6052
6077
|
vertical-align: middle;
|
|
6053
6078
|
width: 1.9375rem; }
|
|
6079
|
+
@media (prefers-reduced-motion: reduce) {
|
|
6080
|
+
.component-action {
|
|
6081
|
+
transition: none; } }
|
|
6054
6082
|
.component-action:hover {
|
|
6055
6083
|
background-color: #6c757d;
|
|
6056
6084
|
color: #fff; }
|
|
@@ -6404,6 +6432,9 @@ button.link-outline {
|
|
|
6404
6432
|
transition: box-shadow 0.15s ease-in-out;
|
|
6405
6433
|
width: 0.875rem;
|
|
6406
6434
|
background-color: transparent; }
|
|
6435
|
+
@media (prefers-reduced-motion: reduce) {
|
|
6436
|
+
.clay-color-pointer {
|
|
6437
|
+
transition: none; } }
|
|
6407
6438
|
.clay-color-pointer:focus, .clay-color-pointer.focus {
|
|
6408
6439
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
6409
6440
|
outline: 0; }
|
|
@@ -6688,7 +6719,7 @@ label.custom-control-label {
|
|
|
6688
6719
|
-webkit-appearance: none;
|
|
6689
6720
|
appearance: none;
|
|
6690
6721
|
background: #fff 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='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
|
|
6691
|
-
border: 0.0625rem
|
|
6722
|
+
border: 0.0625rem solid #ced4da;
|
|
6692
6723
|
border-radius: 0.25rem;
|
|
6693
6724
|
color: #495057;
|
|
6694
6725
|
display: inline-block;
|
|
@@ -6760,7 +6791,7 @@ label.custom-control-label {
|
|
|
6760
6791
|
|
|
6761
6792
|
.custom-file-label {
|
|
6762
6793
|
background-color: #fff;
|
|
6763
|
-
border: 0.0625rem
|
|
6794
|
+
border: 0.0625rem solid #ced4da;
|
|
6764
6795
|
border-radius: 0.25rem;
|
|
6765
6796
|
color: #495057;
|
|
6766
6797
|
font-weight: 400;
|
|
@@ -6780,7 +6811,7 @@ label.custom-control-label {
|
|
|
6780
6811
|
color: #495057;
|
|
6781
6812
|
content: 'Browse';
|
|
6782
6813
|
display: block;
|
|
6783
|
-
height:
|
|
6814
|
+
height: 36px;
|
|
6784
6815
|
line-height: 1.5;
|
|
6785
6816
|
padding: 0.375rem 0.75rem;
|
|
6786
6817
|
position: absolute;
|
|
@@ -7023,6 +7054,9 @@ label.custom-control-label {
|
|
|
7023
7054
|
.date-picker-nav .nav-btn {
|
|
7024
7055
|
color: #6c757d;
|
|
7025
7056
|
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; }
|
|
7057
|
+
@media (prefers-reduced-motion: reduce) {
|
|
7058
|
+
.date-picker-nav .nav-btn {
|
|
7059
|
+
transition: none; } }
|
|
7026
7060
|
.date-picker-nav .nav-btn:hover {
|
|
7027
7061
|
background-color: #e9ecef; }
|
|
7028
7062
|
.date-picker-nav .nav-btn:focus, .date-picker-nav .nav-btn.focus {
|
|
@@ -7101,6 +7135,9 @@ label.custom-control-label {
|
|
|
7101
7135
|
white-space: nowrap;
|
|
7102
7136
|
width: 2rem;
|
|
7103
7137
|
background-color: transparent; }
|
|
7138
|
+
@media (prefers-reduced-motion: reduce) {
|
|
7139
|
+
.date-picker-calendar-item {
|
|
7140
|
+
transition: none; } }
|
|
7104
7141
|
.date-picker-calendar-item:disabled, .date-picker-calendar-item.disabled {
|
|
7105
7142
|
cursor: not-allowed; }
|
|
7106
7143
|
.date-picker-calendar-item .c-inner {
|
|
@@ -7148,9 +7185,6 @@ label.custom-control-label {
|
|
|
7148
7185
|
color: #6c757d;
|
|
7149
7186
|
cursor: pointer;
|
|
7150
7187
|
position: relative; }
|
|
7151
|
-
a.date-picker-date,
|
|
7152
|
-
button.date-picker-date {
|
|
7153
|
-
cursor: pointer; }
|
|
7154
7188
|
.date-picker-date:hover {
|
|
7155
7189
|
background-color: #e9ecef; }
|
|
7156
7190
|
.date-picker-date:focus, .date-picker-date.focus {
|
|
@@ -7254,21 +7288,21 @@ label.custom-control-label {
|
|
|
7254
7288
|
.was-validated .form-control:valid, .form-control.is-valid {
|
|
7255
7289
|
border-color: #28a745;
|
|
7256
7290
|
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='%2328a745' 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");
|
|
7257
|
-
background-position: right
|
|
7291
|
+
background-position: right 9px center;
|
|
7258
7292
|
background-repeat: no-repeat;
|
|
7259
|
-
background-size:
|
|
7260
|
-
padding-right:
|
|
7293
|
+
background-size: 18px 18px 18px 18px;
|
|
7294
|
+
padding-right: 36px; }
|
|
7261
7295
|
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
|
|
7262
7296
|
border-color: #28a745;
|
|
7263
7297
|
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
|
|
7264
7298
|
|
|
7265
7299
|
.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
|
|
7266
|
-
background-position: top
|
|
7267
|
-
padding-right:
|
|
7300
|
+
background-position: top 9px right 9px;
|
|
7301
|
+
padding-right: 36px; }
|
|
7268
7302
|
|
|
7269
7303
|
.was-validated .custom-select:valid, .custom-select.is-valid {
|
|
7270
7304
|
border-color: #28a745;
|
|
7271
|
-
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='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem 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='%2328a745' 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") #fff no-repeat center right 1.75rem/
|
|
7305
|
+
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='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem 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='%2328a745' 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") #fff no-repeat center right 1.75rem/18px 18px;
|
|
7272
7306
|
padding-right: calc( (1em * 0.75) + (2 * 0.375rem * 0.75) + 0.75rem + 1rem); }
|
|
7273
7307
|
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
|
|
7274
7308
|
border-color: #28a745;
|
|
@@ -7334,21 +7368,21 @@ label.custom-control-label {
|
|
|
7334
7368
|
.was-validated .form-control:invalid, .form-control.is-invalid {
|
|
7335
7369
|
border-color: #dc3545;
|
|
7336
7370
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' 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='%23dc3545' stroke='none'/%3e%3c/svg%3e");
|
|
7337
|
-
background-position: right
|
|
7371
|
+
background-position: right 9px center;
|
|
7338
7372
|
background-repeat: no-repeat;
|
|
7339
|
-
background-size:
|
|
7340
|
-
padding-right:
|
|
7373
|
+
background-size: 18px 18px 18px 18px;
|
|
7374
|
+
padding-right: 36px; }
|
|
7341
7375
|
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
|
|
7342
7376
|
border-color: #dc3545;
|
|
7343
7377
|
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
|
|
7344
7378
|
|
|
7345
7379
|
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
|
|
7346
|
-
background-position: top
|
|
7347
|
-
padding-right:
|
|
7380
|
+
background-position: top 9px right 9px;
|
|
7381
|
+
padding-right: 36px; }
|
|
7348
7382
|
|
|
7349
7383
|
.was-validated .custom-select:invalid, .custom-select.is-invalid {
|
|
7350
7384
|
border-color: #dc3545;
|
|
7351
|
-
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='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' 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='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/
|
|
7385
|
+
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='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' 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='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/18px 18px;
|
|
7352
7386
|
padding-right: calc( (1em * 0.75) + (2 * 0.375rem * 0.75) + 0.75rem + 1rem); }
|
|
7353
7387
|
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
|
|
7354
7388
|
border-color: #dc3545;
|
|
@@ -7545,7 +7579,7 @@ label.custom-control-label {
|
|
|
7545
7579
|
.input-group > .custom-file + .form-control,
|
|
7546
7580
|
.input-group > .custom-file + .custom-select,
|
|
7547
7581
|
.input-group > .custom-file + .custom-file {
|
|
7548
|
-
margin-left: -0.0625rem
|
|
7582
|
+
margin-left: -0.0625rem; }
|
|
7549
7583
|
|
|
7550
7584
|
.input-group > .form-control:focus,
|
|
7551
7585
|
.input-group > .custom-select:focus,
|
|
@@ -7602,7 +7636,7 @@ label.custom-control-label {
|
|
|
7602
7636
|
.input-group-append > .btn + .input-group-text,
|
|
7603
7637
|
.input-group-append > .input-group-text + .input-group-text,
|
|
7604
7638
|
.input-group-append > .input-group-text + .btn {
|
|
7605
|
-
margin-left: -0.0625rem
|
|
7639
|
+
margin-left: -0.0625rem; }
|
|
7606
7640
|
|
|
7607
7641
|
.input-group {
|
|
7608
7642
|
align-items: stretch;
|
|
@@ -7704,16 +7738,7 @@ label.custom-control-label {
|
|
|
7704
7738
|
.input-group-lg > .input-group-item > .btn-monospaced {
|
|
7705
7739
|
height: 3rem;
|
|
7706
7740
|
line-height: 1;
|
|
7707
|
-
padding-bottom: 0.3125rem;
|
|
7708
|
-
padding-left: 0;
|
|
7709
|
-
padding-right: 0;
|
|
7710
|
-
padding-top: 0.3125rem;
|
|
7711
7741
|
width: 3rem; }
|
|
7712
|
-
.input-group-lg > .input-group-item > .btn-monospaced .c-inner {
|
|
7713
|
-
margin-bottom: -0.3125rem;
|
|
7714
|
-
margin-left: 0;
|
|
7715
|
-
margin-right: 0;
|
|
7716
|
-
margin-top: -0.3125rem; }
|
|
7717
7742
|
|
|
7718
7743
|
.input-group-lg > .input-group-item > .form-control,
|
|
7719
7744
|
.input-group-lg > .input-group-item > .form-file .btn {
|
|
@@ -7768,16 +7793,7 @@ label.custom-control-label {
|
|
|
7768
7793
|
.input-group-sm > .input-group-item > .btn-monospaced, .form-group-sm .input-group > .input-group-item > .btn-monospaced {
|
|
7769
7794
|
height: 1.9375rem;
|
|
7770
7795
|
line-height: 1;
|
|
7771
|
-
padding-bottom: 0.125rem;
|
|
7772
|
-
padding-left: 0;
|
|
7773
|
-
padding-right: 0;
|
|
7774
|
-
padding-top: 0.125rem;
|
|
7775
7796
|
width: 1.9375rem; }
|
|
7776
|
-
.input-group-sm > .input-group-item > .btn-monospaced .c-inner, .form-group-sm .input-group > .input-group-item > .btn-monospaced .c-inner {
|
|
7777
|
-
margin-bottom: -0.125rem;
|
|
7778
|
-
margin-left: 0;
|
|
7779
|
-
margin-right: 0;
|
|
7780
|
-
margin-top: -0.125rem; }
|
|
7781
7797
|
|
|
7782
7798
|
.input-group-sm > .input-group-item > .form-control, .form-group-sm .input-group > .input-group-item > .form-control,
|
|
7783
7799
|
.input-group-sm > .input-group-item > .form-file .btn,
|
|
@@ -12587,6 +12603,9 @@ label.custom-control-label {
|
|
|
12587
12603
|
color: inherit;
|
|
12588
12604
|
display: block;
|
|
12589
12605
|
transition: border-color 0.1s ease, border-radius 0.5s ease; }
|
|
12606
|
+
@media (prefers-reduced-motion: reduce) {
|
|
12607
|
+
.panel-header-link {
|
|
12608
|
+
transition: none; } }
|
|
12590
12609
|
.panel-header-link:hover {
|
|
12591
12610
|
color: inherit; }
|
|
12592
12611
|
.panel-header-link:focus {
|
|
@@ -12594,6 +12613,9 @@ label.custom-control-label {
|
|
|
12594
12613
|
.panel-header-link.panel-header.collapsed {
|
|
12595
12614
|
border-color: transparent;
|
|
12596
12615
|
transition: border-color 0.75s ease; }
|
|
12616
|
+
@media (prefers-reduced-motion: reduce) {
|
|
12617
|
+
.panel-header-link.panel-header.collapsed {
|
|
12618
|
+
transition: none; } }
|
|
12597
12619
|
.panel-header-link .collapse-icon {
|
|
12598
12620
|
padding-right: 2.28125rem; }
|
|
12599
12621
|
|
|
@@ -13637,6 +13659,9 @@ a.sheet-subtitle:hover {
|
|
|
13637
13659
|
border-radius: 0.25rem;
|
|
13638
13660
|
color: #a9afb5;
|
|
13639
13661
|
transition: box-shadow 0.15s ease-in-out; }
|
|
13662
|
+
@media (prefers-reduced-motion: reduce) {
|
|
13663
|
+
.sidebar-dark .nav-nested .nav-link {
|
|
13664
|
+
transition: none; } }
|
|
13640
13665
|
.sidebar-dark .nav-nested .nav-link:hover {
|
|
13641
13666
|
color: #fff; }
|
|
13642
13667
|
.sidebar-dark .nav-nested .nav-link:focus {
|
|
@@ -13658,9 +13683,15 @@ a.sheet-subtitle:hover {
|
|
|
13658
13683
|
|
|
13659
13684
|
.c-slideout-transition-in {
|
|
13660
13685
|
transition: all 0.3s ease-in-out; }
|
|
13686
|
+
@media (prefers-reduced-motion: reduce) {
|
|
13687
|
+
.c-slideout-transition-in {
|
|
13688
|
+
transition: none; } }
|
|
13661
13689
|
|
|
13662
13690
|
.c-slideout-transition-out {
|
|
13663
13691
|
transition: all 0.2s ease-in; }
|
|
13692
|
+
@media (prefers-reduced-motion: reduce) {
|
|
13693
|
+
.c-slideout-transition-out {
|
|
13694
|
+
transition: none; } }
|
|
13664
13695
|
|
|
13665
13696
|
.c-slideout-fixed {
|
|
13666
13697
|
position: fixed; }
|
|
@@ -15612,6 +15643,9 @@ label.toggle-switch {
|
|
|
15612
15643
|
width: 2rem; }
|
|
15613
15644
|
.close::-ms-expand {
|
|
15614
15645
|
display: none; }
|
|
15646
|
+
@media (prefers-reduced-motion: reduce) {
|
|
15647
|
+
.close {
|
|
15648
|
+
transition: none; } }
|
|
15615
15649
|
.close:hover {
|
|
15616
15650
|
color: #000;
|
|
15617
15651
|
opacity: 0.75;
|
|
@@ -18162,6 +18196,9 @@ button.bg-dark:focus {
|
|
|
18162
18196
|
.d-xl-inline-flex {
|
|
18163
18197
|
display: inline-flex !important; } }
|
|
18164
18198
|
|
|
18199
|
+
.hide {
|
|
18200
|
+
display: none !important; }
|
|
18201
|
+
|
|
18165
18202
|
@media print {
|
|
18166
18203
|
.d-print-none {
|
|
18167
18204
|
display: none !important; }
|