@adaptabletools/adaptable-react-aggrid 10.0.4-canary.1 → 10.0.4-canary.5
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/README.md +2 -1
- package/base.css +387 -87
- package/index.css +454 -94
- package/package.json +4 -4
- package/src/components/AdaptableReact.d.ts +3 -3
- package/src/components/AdaptableReact.js +2 -2
package/index.css
CHANGED
|
@@ -801,25 +801,33 @@ template {
|
|
|
801
801
|
--rdp-background-color-dark: #180270;
|
|
802
802
|
/* Outline border for focused elements */
|
|
803
803
|
--rdp-outline: 2px solid var(--rdp-accent-color);
|
|
804
|
+
/* Outline border for focused and selected elements */
|
|
805
|
+
--rdp-outline-selected: 2px solid rgba(0, 0, 0, 0.75);
|
|
804
806
|
}
|
|
805
807
|
|
|
806
808
|
.rdp {
|
|
807
|
-
display: inline-block;
|
|
808
|
-
font-size: 1rem;
|
|
809
809
|
margin: 1em;
|
|
810
810
|
}
|
|
811
811
|
|
|
812
812
|
/* Hide elements for devices that are not screen readers */
|
|
813
813
|
|
|
814
814
|
.rdp-vhidden {
|
|
815
|
-
|
|
816
|
-
clip: rect(1px, 1px, 1px, 1px);
|
|
817
|
-
height: 1px;
|
|
818
|
-
overflow: hidden;
|
|
815
|
+
box-sizing: border-box;
|
|
819
816
|
padding: 0;
|
|
820
|
-
|
|
817
|
+
margin: 0;
|
|
818
|
+
background: transparent;
|
|
819
|
+
border: 0;
|
|
820
|
+
-moz-appearance: none;
|
|
821
|
+
-webkit-appearance: none;
|
|
822
|
+
appearance: none;
|
|
823
|
+
position: absolute !important;
|
|
821
824
|
top: 0;
|
|
822
|
-
width: 1px;
|
|
825
|
+
width: 1px !important;
|
|
826
|
+
height: 1px !important;
|
|
827
|
+
padding: 0 !important;
|
|
828
|
+
overflow: hidden !important;
|
|
829
|
+
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
830
|
+
border: 0 !important
|
|
823
831
|
}
|
|
824
832
|
|
|
825
833
|
/* Buttons */
|
|
@@ -928,14 +936,14 @@ template {
|
|
|
928
936
|
white-space: nowrap;
|
|
929
937
|
}
|
|
930
938
|
|
|
931
|
-
.rdp-multiple_months .rdp-
|
|
939
|
+
.rdp-multiple_months .rdp-caption_start .rdp-nav {
|
|
932
940
|
position: absolute;
|
|
933
941
|
top: 50%;
|
|
934
942
|
left: 0;
|
|
935
943
|
transform: translateY(-50%);
|
|
936
944
|
}
|
|
937
945
|
|
|
938
|
-
.rdp-multiple_months .rdp-
|
|
946
|
+
.rdp-multiple_months .rdp-caption_end .rdp-nav {
|
|
939
947
|
position: absolute;
|
|
940
948
|
top: 50%;
|
|
941
949
|
right: 0;
|
|
@@ -989,8 +997,8 @@ template {
|
|
|
989
997
|
color: unset;
|
|
990
998
|
}
|
|
991
999
|
|
|
992
|
-
.rdp-dropdown:focus:not([disabled])
|
|
993
|
-
.rdp-dropdown:active:not([disabled])
|
|
1000
|
+
.rdp-dropdown:focus:not([disabled])+.rdp-caption_label,
|
|
1001
|
+
.rdp-dropdown:active:not([disabled])+.rdp-caption_label {
|
|
994
1002
|
border: var(--rdp-outline);
|
|
995
1003
|
border-radius: 6px;
|
|
996
1004
|
background-color: var(--rdp-background-color);
|
|
@@ -1067,16 +1075,30 @@ template {
|
|
|
1067
1075
|
background-color: var(--rdp-accent-color);
|
|
1068
1076
|
}
|
|
1069
1077
|
|
|
1070
|
-
.rdp-
|
|
1078
|
+
.rdp-day_selected:focus:not([disabled]) {
|
|
1079
|
+
border: var(--rdp-outline-selected);
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.rdp:not([dir='rtl']) .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
1071
1083
|
border-top-right-radius: 0;
|
|
1072
1084
|
border-bottom-right-radius: 0;
|
|
1073
1085
|
}
|
|
1074
1086
|
|
|
1075
|
-
.rdp-day_range_end {
|
|
1087
|
+
.rdp:not([dir='rtl']) .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
1088
|
+
border-top-left-radius: 0;
|
|
1089
|
+
border-bottom-left-radius: 0;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.rdp[dir='rtl'] .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
1076
1093
|
border-top-left-radius: 0;
|
|
1077
1094
|
border-bottom-left-radius: 0;
|
|
1078
1095
|
}
|
|
1079
1096
|
|
|
1097
|
+
.rdp[dir='rtl'] .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
1098
|
+
border-top-right-radius: 0;
|
|
1099
|
+
border-bottom-right-radius: 0;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1080
1102
|
.rdp-day_range_end.rdp-day_range_start {
|
|
1081
1103
|
border-radius: 100%;
|
|
1082
1104
|
}
|
|
@@ -1085,12 +1107,54 @@ template {
|
|
|
1085
1107
|
border-radius: 0;
|
|
1086
1108
|
}
|
|
1087
1109
|
|
|
1110
|
+
:root {
|
|
1111
|
+
--toastify-color-light: #fff;
|
|
1112
|
+
--toastify-color-dark: #121212;
|
|
1113
|
+
--toastify-color-info: #3498db;
|
|
1114
|
+
--toastify-color-success: #07bc0c;
|
|
1115
|
+
--toastify-color-warning: #f1c40f;
|
|
1116
|
+
--toastify-color-error: #e74c3c;
|
|
1117
|
+
--toastify-color-transparent: rgba(255, 255, 255, 0.7);
|
|
1118
|
+
--toastify-icon-color-info: var(--toastify-color-info);
|
|
1119
|
+
--toastify-icon-color-success: var(--toastify-color-success);
|
|
1120
|
+
--toastify-icon-color-warning: var(--toastify-color-warning);
|
|
1121
|
+
--toastify-icon-color-error: var(--toastify-color-error);
|
|
1122
|
+
--toastify-toast-width: 320px;
|
|
1123
|
+
--toastify-toast-background: #fff;
|
|
1124
|
+
--toastify-toast-min-height: 64px;
|
|
1125
|
+
--toastify-toast-max-height: 800px;
|
|
1126
|
+
--toastify-font-family: sans-serif;
|
|
1127
|
+
--toastify-z-index: 9999;
|
|
1128
|
+
--toastify-text-color-light: #757575;
|
|
1129
|
+
--toastify-text-color-dark: #fff;
|
|
1130
|
+
--toastify-text-color-info: #fff;
|
|
1131
|
+
--toastify-text-color-success: #fff;
|
|
1132
|
+
--toastify-text-color-warning: #fff;
|
|
1133
|
+
--toastify-text-color-error: #fff;
|
|
1134
|
+
--toastify-spinner-color: #616161;
|
|
1135
|
+
--toastify-spinner-color-empty-area: #e0e0e0;
|
|
1136
|
+
--toastify-color-progress-light: linear-gradient(
|
|
1137
|
+
to right,
|
|
1138
|
+
#4cd964,
|
|
1139
|
+
#5ac8fa,
|
|
1140
|
+
#007aff,
|
|
1141
|
+
#34aadc,
|
|
1142
|
+
#5856d6,
|
|
1143
|
+
#ff2d55
|
|
1144
|
+
);
|
|
1145
|
+
--toastify-color-progress-dark: #bb86fc;
|
|
1146
|
+
--toastify-color-progress-info: var(--toastify-color-info);
|
|
1147
|
+
--toastify-color-progress-success: var(--toastify-color-success);
|
|
1148
|
+
--toastify-color-progress-warning: var(--toastify-color-warning);
|
|
1149
|
+
--toastify-color-progress-error: var(--toastify-color-error);
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1088
1152
|
.Toastify__toast-container {
|
|
1089
|
-
z-index:
|
|
1090
|
-
-webkit-transform: translate3d(0, 0,
|
|
1153
|
+
z-index: var(--toastify-z-index);
|
|
1154
|
+
-webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
|
|
1091
1155
|
position: fixed;
|
|
1092
1156
|
padding: 4px;
|
|
1093
|
-
width:
|
|
1157
|
+
width: var(--toastify-toast-width);
|
|
1094
1158
|
box-sizing: border-box;
|
|
1095
1159
|
color: #fff;
|
|
1096
1160
|
}
|
|
@@ -1150,7 +1214,7 @@ template {
|
|
|
1150
1214
|
|
|
1151
1215
|
.Toastify__toast {
|
|
1152
1216
|
position: relative;
|
|
1153
|
-
min-height:
|
|
1217
|
+
min-height: var(--toastify-toast-min-height);
|
|
1154
1218
|
box-sizing: border-box;
|
|
1155
1219
|
margin-bottom: 1rem;
|
|
1156
1220
|
padding: 8px;
|
|
@@ -1160,9 +1224,9 @@ template {
|
|
|
1160
1224
|
display: flex;
|
|
1161
1225
|
-ms-flex-pack: justify;
|
|
1162
1226
|
justify-content: space-between;
|
|
1163
|
-
max-height:
|
|
1227
|
+
max-height: var(--toastify-toast-max-height);
|
|
1164
1228
|
overflow: hidden;
|
|
1165
|
-
font-family:
|
|
1229
|
+
font-family: var(--toastify-font-family);
|
|
1166
1230
|
cursor: pointer;
|
|
1167
1231
|
direction: ltr;
|
|
1168
1232
|
}
|
|
@@ -1171,37 +1235,30 @@ template {
|
|
|
1171
1235
|
direction: rtl;
|
|
1172
1236
|
}
|
|
1173
1237
|
|
|
1174
|
-
.Toastify__toast--dark {
|
|
1175
|
-
background: #121212;
|
|
1176
|
-
color: #fff;
|
|
1177
|
-
}
|
|
1178
|
-
|
|
1179
|
-
.Toastify__toast--default {
|
|
1180
|
-
background: #fff;
|
|
1181
|
-
color: #aaa;
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
.Toastify__toast--info {
|
|
1185
|
-
background: #3498db;
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
.Toastify__toast--success {
|
|
1189
|
-
background: #07bc0c;
|
|
1190
|
-
}
|
|
1191
|
-
|
|
1192
|
-
.Toastify__toast--warning {
|
|
1193
|
-
background: #f1c40f;
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
.Toastify__toast--error {
|
|
1197
|
-
background: #e74c3c;
|
|
1198
|
-
}
|
|
1199
|
-
|
|
1200
1238
|
.Toastify__toast-body {
|
|
1201
1239
|
margin: auto 0;
|
|
1202
1240
|
-ms-flex: 1 1 auto;
|
|
1203
1241
|
flex: 1 1 auto;
|
|
1204
1242
|
padding: 6px;
|
|
1243
|
+
display: -ms-flexbox;
|
|
1244
|
+
display: flex;
|
|
1245
|
+
-ms-flex-align: center;
|
|
1246
|
+
align-items: center;
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
.Toastify__toast-body > div:last-child {
|
|
1250
|
+
-ms-flex: 1;
|
|
1251
|
+
flex: 1;
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
.Toastify__toast-icon {
|
|
1255
|
+
-webkit-margin-end: 10px;
|
|
1256
|
+
margin-inline-end: 10px;
|
|
1257
|
+
width: 20px;
|
|
1258
|
+
-ms-flex-negative: 0;
|
|
1259
|
+
flex-shrink: 0;
|
|
1260
|
+
display: -ms-flexbox;
|
|
1261
|
+
display: flex;
|
|
1205
1262
|
}
|
|
1206
1263
|
|
|
1207
1264
|
.Toastify--animate {
|
|
@@ -1209,6 +1266,11 @@ template {
|
|
|
1209
1266
|
animation-duration: 0.7s;
|
|
1210
1267
|
}
|
|
1211
1268
|
|
|
1269
|
+
.Toastify--animate-icon {
|
|
1270
|
+
animation-fill-mode: both;
|
|
1271
|
+
animation-duration: 0.3s;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1212
1274
|
@media only screen and (max-width : 480px) {
|
|
1213
1275
|
.Toastify__toast {
|
|
1214
1276
|
margin-bottom: 0;
|
|
@@ -1216,6 +1278,69 @@ template {
|
|
|
1216
1278
|
}
|
|
1217
1279
|
}
|
|
1218
1280
|
|
|
1281
|
+
.Toastify__toast-theme--dark {
|
|
1282
|
+
background: var(--toastify-color-dark);
|
|
1283
|
+
color: var(--toastify-text-color-dark);
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.Toastify__toast-theme--light {
|
|
1287
|
+
background: var(--toastify-color-light);
|
|
1288
|
+
color: var(--toastify-text-color-light);
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.Toastify__toast-theme--colored.Toastify__toast--default {
|
|
1292
|
+
background: var(--toastify-color-light);
|
|
1293
|
+
color: var(--toastify-text-color-light);
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.Toastify__toast-theme--colored.Toastify__toast--info {
|
|
1297
|
+
color: var(--toastify-text-color-info);
|
|
1298
|
+
background: var(--toastify-color-info);
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
.Toastify__toast-theme--colored.Toastify__toast--success {
|
|
1302
|
+
color: var(--toastify-text-color-success);
|
|
1303
|
+
background: var(--toastify-color-success);
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
.Toastify__toast-theme--colored.Toastify__toast--warning {
|
|
1307
|
+
color: var(--toastify-text-color-warning);
|
|
1308
|
+
background: var(--toastify-color-warning);
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1311
|
+
.Toastify__toast-theme--colored.Toastify__toast--error {
|
|
1312
|
+
color: var(--toastify-text-color-error);
|
|
1313
|
+
background: var(--toastify-color-error);
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
.Toastify__progress-bar-theme--light {
|
|
1317
|
+
background: var(--toastify-color-progress-light);
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
.Toastify__progress-bar-theme--dark {
|
|
1321
|
+
background: var(--toastify-color-progress-dark);
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
.Toastify__progress-bar--info {
|
|
1325
|
+
background: var(--toastify-color-progress-info);
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
.Toastify__progress-bar--success {
|
|
1329
|
+
background: var(--toastify-color-progress-success);
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
.Toastify__progress-bar--warning {
|
|
1333
|
+
background: var(--toastify-color-progress-warning);
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
.Toastify__progress-bar--error {
|
|
1337
|
+
background: var(--toastify-color-progress-error);
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
|
|
1341
|
+
background: var(--toastify-color-transparent);
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1219
1344
|
.Toastify__close-button {
|
|
1220
1345
|
color: #fff;
|
|
1221
1346
|
background: transparent;
|
|
@@ -1229,7 +1354,7 @@ template {
|
|
|
1229
1354
|
align-self: flex-start;
|
|
1230
1355
|
}
|
|
1231
1356
|
|
|
1232
|
-
.Toastify__close-button--
|
|
1357
|
+
.Toastify__close-button--light {
|
|
1233
1358
|
color: #000;
|
|
1234
1359
|
opacity: 0.3;
|
|
1235
1360
|
}
|
|
@@ -1259,9 +1384,8 @@ template {
|
|
|
1259
1384
|
left: 0;
|
|
1260
1385
|
width: 100%;
|
|
1261
1386
|
height: 5px;
|
|
1262
|
-
z-index:
|
|
1387
|
+
z-index: var(--toastify-z-index);
|
|
1263
1388
|
opacity: 0.7;
|
|
1264
|
-
background-color: rgba(255, 255, 255, 0.7);
|
|
1265
1389
|
transform-origin: left;
|
|
1266
1390
|
}
|
|
1267
1391
|
|
|
@@ -1279,12 +1403,15 @@ template {
|
|
|
1279
1403
|
transform-origin: right;
|
|
1280
1404
|
}
|
|
1281
1405
|
|
|
1282
|
-
.
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1406
|
+
.Toastify__spinner {
|
|
1407
|
+
width: 20px;
|
|
1408
|
+
height: 20px;
|
|
1409
|
+
box-sizing: border-box;
|
|
1410
|
+
border: 2px solid;
|
|
1411
|
+
border-radius: 100%;
|
|
1412
|
+
border-color: var(--toastify-spinner-color-empty-area);
|
|
1413
|
+
border-right-color: var(--toastify-spinner-color);
|
|
1414
|
+
animation: Toastify__spin 0.65s linear infinite;
|
|
1288
1415
|
}
|
|
1289
1416
|
|
|
1290
1417
|
@keyframes Toastify__bounceInRight {
|
|
@@ -1648,6 +1775,15 @@ template {
|
|
|
1648
1775
|
animation-name: Toastify__slideOutDown;
|
|
1649
1776
|
}
|
|
1650
1777
|
|
|
1778
|
+
@keyframes Toastify__spin {
|
|
1779
|
+
from {
|
|
1780
|
+
transform: rotate(0deg);
|
|
1781
|
+
}
|
|
1782
|
+
to {
|
|
1783
|
+
transform: rotate(360deg);
|
|
1784
|
+
}
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1651
1787
|
:root {
|
|
1652
1788
|
--ab-space-0: 0px;
|
|
1653
1789
|
--ab-space-1: 4px;
|
|
@@ -1756,7 +1892,7 @@ template {
|
|
|
1756
1892
|
:root {
|
|
1757
1893
|
--ab-cmp-dialog__background: var(--ab-color-defaultbackground, white);
|
|
1758
1894
|
--ab-cmp-dialog__color: var(--ab-color-text-on-defaultbackground, white);
|
|
1759
|
-
--ab-cmp-dialog-close-button__color: var(--ab-color-
|
|
1895
|
+
--ab-cmp-dialog-close-button__color: var(--ab-color-accentlight);
|
|
1760
1896
|
--ab-cmp-dialog__border-radius: var(--ab__border-radius);
|
|
1761
1897
|
--ab-cmp-dialog__min-height: 60vh; }
|
|
1762
1898
|
|
|
@@ -1857,7 +1993,7 @@ template {
|
|
|
1857
1993
|
|
|
1858
1994
|
:root {
|
|
1859
1995
|
--ab-cmp-panel_header__background: var(--ab-color-primary);
|
|
1860
|
-
--ab-cmp-panel_header__font-size: var(--ab-font-size-
|
|
1996
|
+
--ab-cmp-panel_header__font-size: var(--ab-font-size-3);
|
|
1861
1997
|
--ab-cmp-panel__font-size: var(--ab-font-size-3);
|
|
1862
1998
|
--ab-cmp-panel__border-radius: var(--ab__border-radius);
|
|
1863
1999
|
--ab-cmp-panel__padding: var(--ab-space-2);
|
|
@@ -1871,6 +2007,7 @@ template {
|
|
|
1871
2007
|
--ab-cmp-panel_header--variant-primary__background: var(--ab-color-secondary);
|
|
1872
2008
|
--ab-cmp-panel_header--variant-primary__color: var(--ab-color-text-on-secondary);
|
|
1873
2009
|
--ab-cmp-panel_header--variant-modern__background: var(--ab-color-primary);
|
|
2010
|
+
--ab-cmp-panel_header--variant-minimal__background: var(--ab-color-defaultbackground);
|
|
1874
2011
|
--ab-cmp-panel_header--variant-modern__color: var(--ab-color-text-on-primary);
|
|
1875
2012
|
--ab-cmp-panel_body--variant-modern__background: var(--ab-color-primarylight); }
|
|
1876
2013
|
|
|
@@ -2090,6 +2227,59 @@ template {
|
|
|
2090
2227
|
:root {
|
|
2091
2228
|
--ab-cmp-custom-sort-wizard-loader__font-size: var(--ab-font-size-4); }
|
|
2092
2229
|
|
|
2230
|
+
:root {
|
|
2231
|
+
--ab-cmp-adaptable-popup__background: var(--ab-color-primarylight);
|
|
2232
|
+
--ab-cmp-adaptable-popup--settings__padding: 20px;
|
|
2233
|
+
--ab-cmp-adaptable-popup--settings__height: 90vh;
|
|
2234
|
+
--ab-cmp-adaptable-popup__height: 90vh;
|
|
2235
|
+
--ab-cmp-adaptable-popup__max-height: 1200px;
|
|
2236
|
+
--ab-cmp-adaptable-popup-navigation-list__padding: var(--ab-space-1) var(--ab-space-2);
|
|
2237
|
+
--ab-cmp-adaptable-popup-navigation-list__border-right: 2px solid var(--ab-color-defaultbackground);
|
|
2238
|
+
--ab-cmp-adaptable-popup-navigation-list__font-size: var(--ab-font-size-3);
|
|
2239
|
+
--ab-cmp-adaptable-popup-navigation-list-item__padding: var(--ab-space-0) var(--ab-space-1);
|
|
2240
|
+
--ab-cmp-adaptable-popup-navigation-list-item__margin-bottom: var(--ab-space-2) var(--ab-space-2);
|
|
2241
|
+
--ab-cmp-adaptable-popup-navigation-list-item-separator__border: 1px solid var(--ab-color-primarydark);
|
|
2242
|
+
--ab-cmp-adaptable-popup-navigation-list-item-separator__margin: var(--ab-space-2) var(--ab-space-2);
|
|
2243
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__padding: var(--ab-space-2) var(--ab-space-2);
|
|
2244
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__border-radius: var(--ab__border-radius);
|
|
2245
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__color: var(--ab-color-text-on-primary);
|
|
2246
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__background--active: var(--ab-color-focus);
|
|
2247
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__background--color: var(--ab-color-accentlight);
|
|
2248
|
+
--ab-cmp-adaptable-popup-navigation-list-item-icon__margin-right: var(--ab-space-2);
|
|
2249
|
+
--ab-cmp-adaptable-popup-topbar__background: var(--ab-color-secondary);
|
|
2250
|
+
--ab-cmp-adaptable-popup-topbar__height: 45px;
|
|
2251
|
+
--ab-cmp-adaptable-popup-topbar__color: var(--ab-color-text-on-secondary);
|
|
2252
|
+
--ab-cmp-adaptable-popup-topbar__font-weight: 500;
|
|
2253
|
+
--ab-cmp-adaptable-popup-topbar__padding: var(--ab-space-3);
|
|
2254
|
+
--ab-cmp-adaptable-popup-topbar-icon__margin-right: var(--ab-space-2);
|
|
2255
|
+
--ab-cmp-adaptable-popup-topbar-icon__color: var(--ab-color-accentlight);
|
|
2256
|
+
--ab-cmp-adaptable-popup-panel__padding: 0 var(--ab-space-2);
|
|
2257
|
+
--ab-cmp-adaptable-popup-panel__margin-bottom: var(--ab-space-3);
|
|
2258
|
+
--ab-cmp-adaptable-popup-panel__margin-top: var(--ab-space-2);
|
|
2259
|
+
--ab-cmp-adaptable-popup-panel-title__font-size: var(--ab-font-size-5);
|
|
2260
|
+
--ab-cmp-adaptable-popup-panel-body__padding: var(--ab-space-2); }
|
|
2261
|
+
|
|
2262
|
+
:root {
|
|
2263
|
+
--ab-cmp-adaptable-object-list-tag__margin-right: var(--ab-space-2);
|
|
2264
|
+
--ab-cmp-adaptable-object-list-tag__margin-top: var(--ab-space-2);
|
|
2265
|
+
--ab-cmp-adaptable-object-list-item__background-color: var(--ab-color-defaultbackground);
|
|
2266
|
+
--ab-cmp-adaptable-object-list-item__padding: var(--ab-space-3) var(--ab-space-3);
|
|
2267
|
+
--ab-cmp-adaptable-object-list-item__margin-bottom: var(--ab-space-3);
|
|
2268
|
+
--ab-cmp-adaptable-object-list-item-label__padding-top: var(--ab-space-3);
|
|
2269
|
+
--ab-cmp-adaptable-object-list-item-label__width: 130px;
|
|
2270
|
+
--ab-cmp-adaptable-object-list-item-tag__padding: 6px 12px; }
|
|
2271
|
+
|
|
2272
|
+
:root {
|
|
2273
|
+
--ab-cmp-adaptable-options__background-color: var(--ab-color-defaultbackground);
|
|
2274
|
+
--ab-cmp-grid-options__background-color: var(--ab-color-defaultbackground);
|
|
2275
|
+
--ab-cmp-grid-summary__background-color: var(--ab-color-defaultbackground); }
|
|
2276
|
+
|
|
2277
|
+
:root {
|
|
2278
|
+
--ab-cmp-system-status-list__background-color: var(--ab-color-defaultbackground); }
|
|
2279
|
+
|
|
2280
|
+
:root {
|
|
2281
|
+
--ab-cmp-dashboard-module-selector-background: var(--ab-color-defaultbackground); }
|
|
2282
|
+
|
|
2093
2283
|
.ab-Radio-input:focus + svg rect {
|
|
2094
2284
|
stroke: var(--ab-color-accent);
|
|
2095
2285
|
stroke-width: 2; }
|
|
@@ -2205,7 +2395,6 @@ template {
|
|
|
2205
2395
|
fill: var(--ab-color-text-on-primary);
|
|
2206
2396
|
color: var(--ab-cmp-dialog__color);
|
|
2207
2397
|
border-radius: var(--ab-cmp-dialog__border-radius);
|
|
2208
|
-
min-height: var(--ab-cmp-dialog__min-height);
|
|
2209
2398
|
display: flex;
|
|
2210
2399
|
flex-flow: column; }
|
|
2211
2400
|
|
|
@@ -2218,8 +2407,8 @@ template {
|
|
|
2218
2407
|
|
|
2219
2408
|
.ab-Dialog__close-button {
|
|
2220
2409
|
position: absolute;
|
|
2221
|
-
right:
|
|
2222
|
-
top:
|
|
2410
|
+
right: 6px;
|
|
2411
|
+
top: 6px;
|
|
2223
2412
|
font-size: var(--ab-font-size-3);
|
|
2224
2413
|
font-weight: 700;
|
|
2225
2414
|
line-height: 1;
|
|
@@ -2457,6 +2646,9 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2457
2646
|
z-index: 1000;
|
|
2458
2647
|
font-family: var(--ab__font-family); }
|
|
2459
2648
|
|
|
2649
|
+
.ab-Modal.ab-Modal--resizable-and-movable {
|
|
2650
|
+
position: relative; }
|
|
2651
|
+
|
|
2460
2652
|
.ab-Modal-backdrop {
|
|
2461
2653
|
background: var(--ab-cmp-modal-backdrop__background);
|
|
2462
2654
|
z-index: 900;
|
|
@@ -2542,6 +2734,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2542
2734
|
display: flex;
|
|
2543
2735
|
flex-flow: column;
|
|
2544
2736
|
max-height: var(--ab-cmp-panel__max-height);
|
|
2737
|
+
overflow: auto;
|
|
2545
2738
|
font-size: var(--ab-cmp-panel__font-size); }
|
|
2546
2739
|
|
|
2547
2740
|
.ab-Panel .glyphicon {
|
|
@@ -2932,9 +3125,15 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2932
3125
|
.ab-Dashboard .ab-Input {
|
|
2933
3126
|
border: none; }
|
|
2934
3127
|
|
|
3128
|
+
.ab-Dashboard .ab-DashboardToolbar__Export__wrap {
|
|
3129
|
+
white-space: nowrap; }
|
|
3130
|
+
|
|
2935
3131
|
.ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
|
|
2936
3132
|
padding: var(--ab-space-1); }
|
|
2937
3133
|
|
|
3134
|
+
.ab-Dashboard .ab-StateManagement__Clear-Button, .ab-Dashboard .ab-StateManagement__Load-Button, .ab-Dashboard .ab-StateManagement__Export-Dropdown {
|
|
3135
|
+
margin-left: var(--ab-space-1); }
|
|
3136
|
+
|
|
2938
3137
|
.ab-GridList {
|
|
2939
3138
|
--at-grid__background: transparent; }
|
|
2940
3139
|
|
|
@@ -3019,57 +3218,70 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3019
3218
|
|
|
3020
3219
|
:root {
|
|
3021
3220
|
--ab-cmp-toggle-button__background: #ccc;
|
|
3022
|
-
--ab-cmp-toggle-button--active__background: var(--ab-color-success);
|
|
3221
|
+
--ab-cmp-toggle-button--active__background: var(--ab-color-success);
|
|
3222
|
+
--ab-cmp-toggle-button__font-size: var(--ab-font-size-1);
|
|
3223
|
+
--ab-cmp-toggle-button__color: var(--ab-color-text-on-primary);
|
|
3224
|
+
--ab-cmp-toggle-button--checked__color: var(--ab-color-accentlight); }
|
|
3023
3225
|
|
|
3024
3226
|
.ab-ToggleButton {
|
|
3025
3227
|
position: relative;
|
|
3026
3228
|
display: inline-block;
|
|
3027
3229
|
min-width: 40px;
|
|
3028
|
-
width:
|
|
3029
|
-
height:
|
|
3230
|
+
width: 87px;
|
|
3231
|
+
height: 32px; }
|
|
3030
3232
|
|
|
3031
3233
|
.ab-ToggleButton:hover:not(.ab-ToggleButton--disabled) {
|
|
3032
3234
|
cursor: pointer;
|
|
3033
3235
|
opacity: 0.85; }
|
|
3034
3236
|
|
|
3035
3237
|
.ab-ToggleButton__input {
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3238
|
+
opacity: 0;
|
|
3239
|
+
width: 0;
|
|
3240
|
+
height: 0; }
|
|
3039
3241
|
|
|
3040
3242
|
.ab-ToggleButton__slider {
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3243
|
+
position: absolute;
|
|
3244
|
+
top: 0;
|
|
3245
|
+
left: 0;
|
|
3246
|
+
right: 0;
|
|
3247
|
+
bottom: 0;
|
|
3248
|
+
background-color: var(--ab-cmp-toggle-button__background);
|
|
3249
|
+
transition: 0.1s;
|
|
3250
|
+
border-radius: var(--ab__border-radius); }
|
|
3049
3251
|
|
|
3050
3252
|
.ab-ToggleButton__slider:before {
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3253
|
+
position: absolute;
|
|
3254
|
+
content: "";
|
|
3255
|
+
width: 24px;
|
|
3256
|
+
height: 24px;
|
|
3257
|
+
left: 4px;
|
|
3258
|
+
top: 4px;
|
|
3259
|
+
border-radius: var(--ab__border-radius);
|
|
3260
|
+
background-color: #fff;
|
|
3261
|
+
-webkit-transition: 0.4s;
|
|
3262
|
+
transition: 0.2s; }
|
|
3061
3263
|
|
|
3062
3264
|
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider {
|
|
3063
|
-
|
|
3265
|
+
background-color: var(--ab-cmp-toggle-button--active__background); }
|
|
3064
3266
|
|
|
3065
3267
|
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider:before {
|
|
3066
|
-
|
|
3268
|
+
transform: translateX(54px); }
|
|
3067
3269
|
|
|
3068
3270
|
.ab-ToggleButton__input:focus + .ab-ToggleButton__slider {
|
|
3069
|
-
|
|
3271
|
+
box-shadow: var(--ab-focus__box-shadow); }
|
|
3070
3272
|
|
|
3071
3273
|
.ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
|
|
3072
|
-
|
|
3274
|
+
opacity: 0.5; }
|
|
3275
|
+
|
|
3276
|
+
.ab-ToggleButton .ab-ToggleButton__text {
|
|
3277
|
+
font-size: var(--ab-cmp-toggle-button__font-size);
|
|
3278
|
+
padding-right: var(--ab-space-2);
|
|
3279
|
+
color: var(--ab-cmp-toggle-button__color);
|
|
3280
|
+
font-weight: 600; }
|
|
3281
|
+
|
|
3282
|
+
.ab-ToggleButton--checked .ab-ToggleButton__text {
|
|
3283
|
+
padding-left: var(--ab-space-2);
|
|
3284
|
+
color: var(--ab-cmp-toggle-button--checked__color); }
|
|
3073
3285
|
|
|
3074
3286
|
.ab-Loader {
|
|
3075
3287
|
font-size: var(--ab-cmp-loader__font-size);
|
|
@@ -3128,6 +3340,25 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3128
3340
|
font-style: var(--ab-cmp-progress-indicator__font-style);
|
|
3129
3341
|
font-family: var(--ab-cmp-progress-indicator__font-family); }
|
|
3130
3342
|
|
|
3343
|
+
:root {
|
|
3344
|
+
--ab-cmp-Tag__font-size: var(--ab-font-size-3); }
|
|
3345
|
+
|
|
3346
|
+
.ab-Tag {
|
|
3347
|
+
display: inline-flex;
|
|
3348
|
+
font-size: var(--ab-cmp-Tag__font-size); }
|
|
3349
|
+
|
|
3350
|
+
.ab-AdaptableOptions {
|
|
3351
|
+
background: var(--ab-cmp-adaptable-options__background-color); }
|
|
3352
|
+
|
|
3353
|
+
.ab-GridOptions {
|
|
3354
|
+
background: var(--ab-cmp-grid-options__background-color); }
|
|
3355
|
+
|
|
3356
|
+
.ab-GridSummary {
|
|
3357
|
+
background: var(--ab-cmp-grid-summary__background-color); }
|
|
3358
|
+
|
|
3359
|
+
.ab-SystemStatus-Popup-List {
|
|
3360
|
+
background: var(--ab-cmp-system-status-list__background-color); }
|
|
3361
|
+
|
|
3131
3362
|
.ab-ObjectCollection__list > * {
|
|
3132
3363
|
background: var(--ab-cmp-listgroupitem__background);
|
|
3133
3364
|
color: var(--ab-cmp-listgroupitem__color); }
|
|
@@ -3157,19 +3388,19 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3157
3388
|
.ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
|
|
3158
3389
|
overflow-x: hidden; }
|
|
3159
3390
|
|
|
3160
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
3161
|
-
.ag-theme-balham .ab-ListBoxFilterForm--
|
|
3391
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style,
|
|
3392
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style {
|
|
3162
3393
|
--ab-cmp-dropdown__border-radius: 0;
|
|
3163
3394
|
--ab-cmp-input__border-radius: 0;
|
|
3164
3395
|
--ab-cmp-input__padding: 0;
|
|
3165
3396
|
--ab-cmp-dropdown__padding: 3px;
|
|
3166
3397
|
--ab-focus__box-shadow: 0 0 3px 0px var(--ab-color-accent); }
|
|
3167
3398
|
|
|
3168
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
3169
|
-
.ag-theme-balham .ab-ListBoxFilterForm--
|
|
3399
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap,
|
|
3400
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap {
|
|
3170
3401
|
border-radius: 0; }
|
|
3171
3402
|
|
|
3172
|
-
html.ab--theme-dark .ab-ListBoxFilterForm--
|
|
3403
|
+
html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
3173
3404
|
--ab-color-inputborder: white;
|
|
3174
3405
|
--ab-cmp-dropdown__border: 1px solid white; }
|
|
3175
3406
|
|
|
@@ -3248,8 +3479,12 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
3248
3479
|
.ab-Dashboard__application-icon {
|
|
3249
3480
|
margin-right: var(--ab-space-2); }
|
|
3250
3481
|
|
|
3482
|
+
.ab-Dashboard-Popup__Module-Selector {
|
|
3483
|
+
background: var(--ab-cmp-dashboard-module-selector-background); }
|
|
3484
|
+
|
|
3251
3485
|
.ab-ToolPanel {
|
|
3252
|
-
|
|
3486
|
+
flex: 1 1 0;
|
|
3487
|
+
min-width: 0;
|
|
3253
3488
|
color: var(--ab-cmp-toolpanel__color);
|
|
3254
3489
|
font-family: var(--ab-cmp-toolpanel__font-family); }
|
|
3255
3490
|
|
|
@@ -3266,9 +3501,134 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
3266
3501
|
flex-wrap: wrap;
|
|
3267
3502
|
grid-gap: var(--ab-cmp-toolpanel-header__grid-gap); }
|
|
3268
3503
|
|
|
3504
|
+
.ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button {
|
|
3505
|
+
justify-content: center;
|
|
3506
|
+
flex: 1; }
|
|
3507
|
+
|
|
3508
|
+
.ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button, .ab-ToolPanel .ab-StateManagement__Export-Dropdown {
|
|
3509
|
+
margin-bottom: var(--ab-space-1); }
|
|
3510
|
+
|
|
3269
3511
|
.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
3270
3512
|
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
|
|
3271
3513
|
|
|
3514
|
+
.ab-Adaptable-Popup {
|
|
3515
|
+
background: var(--ab-cmp-adaptable-popup__background);
|
|
3516
|
+
max-height: var(--ab-cmp-adaptable-popup__max-height); }
|
|
3517
|
+
|
|
3518
|
+
.ab-Adaptable-Popup__Navigation {
|
|
3519
|
+
padding-top: 10px;
|
|
3520
|
+
overflow: auto;
|
|
3521
|
+
border-right: var(--ab-cmp-adaptable-popup-navigation-list__border-right);
|
|
3522
|
+
font-family: var(--ab__font-family); }
|
|
3523
|
+
|
|
3524
|
+
.ab-Adaptable-Popup__Navigation__List {
|
|
3525
|
+
list-style: none;
|
|
3526
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list__padding);
|
|
3527
|
+
margin: 0;
|
|
3528
|
+
font-size: var(--ab-cmp-adaptable-popup-navigation-list__font-size); }
|
|
3529
|
+
|
|
3530
|
+
.ab-Adaptable-Popup__Navigation__List__Item {
|
|
3531
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item__padding);
|
|
3532
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item__margin-bottom); }
|
|
3533
|
+
|
|
3534
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Separator {
|
|
3535
|
+
border-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__border);
|
|
3536
|
+
margin: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__margin); }
|
|
3537
|
+
|
|
3538
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
3539
|
+
background: none;
|
|
3540
|
+
border: none;
|
|
3541
|
+
width: 100%;
|
|
3542
|
+
text-align: left;
|
|
3543
|
+
cursor: pointer;
|
|
3544
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item-button__padding);
|
|
3545
|
+
border-radius: var(--ab-cmp-adaptable-popup-navigation-list-item-button__border-radius);
|
|
3546
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__color); }
|
|
3547
|
+
|
|
3548
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Icon {
|
|
3549
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right); }
|
|
3550
|
+
|
|
3551
|
+
.ab-Adaptable-Popup__Navigation__List__Item--active .ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
3552
|
+
background: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--active);
|
|
3553
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--color); }
|
|
3554
|
+
|
|
3555
|
+
.ab-Adaptable-Popup__TopBar {
|
|
3556
|
+
display: flex;
|
|
3557
|
+
align-items: center;
|
|
3558
|
+
background: var(--ab-cmp-adaptable-popup-topbar__background);
|
|
3559
|
+
height: var(--ab-cmp-adaptable-popup-topbar__height);
|
|
3560
|
+
color: var(--ab-cmp-adaptable-popup-topbar__color);
|
|
3561
|
+
font-weight: var(--ab-cmp-adaptable-popup-topbar__font-weight);
|
|
3562
|
+
padding: var(--ab-cmp-adaptable-popup-topbar__padding);
|
|
3563
|
+
box-sizing: border-box; }
|
|
3564
|
+
|
|
3565
|
+
.ab-Adaptable-Popup__TopBar__Icon {
|
|
3566
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right); }
|
|
3567
|
+
|
|
3568
|
+
.ab-Adaptable-Popup__TopBar__Close .ab-Icon {
|
|
3569
|
+
color: var(--ab-cmp-adaptable-popup-topbar-icon__color); }
|
|
3570
|
+
|
|
3571
|
+
.ab-Adaptable-Popup--settings-popup {
|
|
3572
|
+
height: var(--ab-cmp-adaptable-popup--settings__height); }
|
|
3573
|
+
|
|
3574
|
+
.ab-Adaptable-Popup--settings-popup .ab-Dialog__close-button {
|
|
3575
|
+
top: 9px; }
|
|
3576
|
+
|
|
3577
|
+
.ab-Adaptable-Popup--settings-popup .ab-Adaptable-Popup__Body {
|
|
3578
|
+
padding: var(--ab-cmp-adaptable-popup--settings__padding);
|
|
3579
|
+
min-width: 0; }
|
|
3580
|
+
|
|
3581
|
+
.ab-Adaptable-Popup__Panel__Header {
|
|
3582
|
+
display: flex;
|
|
3583
|
+
padding: 0 var(--ab-cmp-adaptable-popup-panel__padding);
|
|
3584
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-panel__margin-bottom);
|
|
3585
|
+
margin-top: var(--ab-cmp-adaptable-popup-panel__margin-top); }
|
|
3586
|
+
|
|
3587
|
+
.ab-Adaptable-Popup__Panel__Header__Title {
|
|
3588
|
+
font-size: var(--ab-cmp-adaptable-popup-panel-title__font-size); }
|
|
3589
|
+
|
|
3590
|
+
.ab-Adaptable-Popup__Panel__Body {
|
|
3591
|
+
padding: var(--ab-cmp-adaptable-popup-panel-body__padding);
|
|
3592
|
+
flex: 1 1 0;
|
|
3593
|
+
min-height: 0;
|
|
3594
|
+
overflow: auto; }
|
|
3595
|
+
|
|
3596
|
+
.ab-Adaptable-Popup--window .ab-Adaptable-Popup__TopBar {
|
|
3597
|
+
cursor: move; }
|
|
3598
|
+
|
|
3599
|
+
.ab-Adaptable-Popup--window.ab-Adaptable-Popup--action-popup .ab-Panel__header {
|
|
3600
|
+
cursor: move; }
|
|
3601
|
+
|
|
3602
|
+
.ab-Adaptable-Object-List {
|
|
3603
|
+
list-style: none;
|
|
3604
|
+
padding: 0; }
|
|
3605
|
+
|
|
3606
|
+
.ab-Adaptable-Object-List .ab-Tag {
|
|
3607
|
+
margin-right: var(--ab-cmp-adaptable-object-list-tag__margin-right);
|
|
3608
|
+
margin-top: var(--ab-cmp-adaptable-object-list-tag__margin-top);
|
|
3609
|
+
padding: var(--ab-cmp-adaptable-object-list-item-tag__padding); }
|
|
3610
|
+
|
|
3611
|
+
.ab-Adaptable-Object-List__Item {
|
|
3612
|
+
background-color: var(--ab-cmp-adaptable-object-list-item__background-color);
|
|
3613
|
+
padding: var(--ab-cmp-adaptable-object-list-item__padding);
|
|
3614
|
+
margin-bottom: var(--ab-cmp-adaptable-object-list-item__margin-bottom); }
|
|
3615
|
+
|
|
3616
|
+
.ab-Adaptable-Object-List__Item__edit-property {
|
|
3617
|
+
visibility: hidden; }
|
|
3618
|
+
|
|
3619
|
+
.ab-Adaptable-Object-List__Item__buttons {
|
|
3620
|
+
padding-left: var(--ab-space-2);
|
|
3621
|
+
min-width: 80px;
|
|
3622
|
+
text-align: right;
|
|
3623
|
+
margin-left: var(--ab-space-3); }
|
|
3624
|
+
|
|
3625
|
+
.ab-Adaptable-Object-List__Item__label {
|
|
3626
|
+
padding-top: var(--ab-cmp-adaptable-object-list-item-label__padding-top);
|
|
3627
|
+
width: var(--ab-cmp-adaptable-object-list-item-label__width); }
|
|
3628
|
+
|
|
3629
|
+
.ab-Adaptable-Object-List__Item__label:hover .ab-Adaptable-Object-List__Item__edit-property {
|
|
3630
|
+
visibility: visible; }
|
|
3631
|
+
|
|
3272
3632
|
.ab-alert--error {
|
|
3273
3633
|
background: var(--ab-color-error); }
|
|
3274
3634
|
|