@oliasoft-open-source/react-ui-library 3.11.0-beta-3 → 3.11.0-beta-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/dist/global.css +516 -166
- package/dist/index.js +172 -172
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/global.css
CHANGED
|
@@ -7985,103 +7985,103 @@ html[data-theme='dark'] {
|
|
|
7985
7985
|
/*
|
|
7986
7986
|
Z-INDEX
|
|
7987
7987
|
*/
|
|
7988
|
-
.
|
|
7988
|
+
._inputInTable_yeflg_337 {
|
|
7989
7989
|
background-color: transparent;
|
|
7990
7990
|
border-radius: inherit !important;
|
|
7991
7991
|
height: var(--size);
|
|
7992
7992
|
min-height: 100%;
|
|
7993
7993
|
}
|
|
7994
|
-
.
|
|
7994
|
+
._inputInTable_yeflg_337:not(:hover) {
|
|
7995
7995
|
border-color: transparent;
|
|
7996
7996
|
}
|
|
7997
|
-
.
|
|
7997
|
+
._inputHover_yeflg_346 {
|
|
7998
7998
|
position: relative;
|
|
7999
7999
|
border-color: var(--color-border-hover);
|
|
8000
8000
|
z-index: 2;
|
|
8001
8001
|
}
|
|
8002
|
-
.
|
|
8002
|
+
._inputFocus_yeflg_351 {
|
|
8003
8003
|
position: relative;
|
|
8004
8004
|
outline: none !important;
|
|
8005
8005
|
border-color: var(--color-border-focus) !important;
|
|
8006
8006
|
box-shadow: var(--shadow-focus);
|
|
8007
8007
|
z-index: 3;
|
|
8008
8008
|
}
|
|
8009
|
-
.
|
|
8010
|
-
.
|
|
8009
|
+
._inputError_yeflg_358,
|
|
8010
|
+
._inputWarning_yeflg_359 {
|
|
8011
8011
|
position: relative;
|
|
8012
8012
|
}
|
|
8013
|
-
.
|
|
8013
|
+
._inputError_yeflg_358 {
|
|
8014
8014
|
z-index: 2;
|
|
8015
8015
|
border-color: var(--color-border-error) !important;
|
|
8016
8016
|
color: var(--color-text-error) !important;
|
|
8017
8017
|
background-color: var(--color-background-error);
|
|
8018
8018
|
}
|
|
8019
|
-
.
|
|
8019
|
+
._inputError_yeflg_358:hover {
|
|
8020
8020
|
border-color: var(--color-border-error-hover) !important;
|
|
8021
8021
|
}
|
|
8022
|
-
.
|
|
8022
|
+
._inputError_yeflg_358:focus {
|
|
8023
8023
|
position: relative;
|
|
8024
8024
|
outline: none !important;
|
|
8025
8025
|
border-color: var(--color-border-focus) !important;
|
|
8026
8026
|
box-shadow: var(--shadow-focus);
|
|
8027
8027
|
z-index: 3;
|
|
8028
8028
|
}
|
|
8029
|
-
.
|
|
8029
|
+
._inputWarning_yeflg_359 {
|
|
8030
8030
|
z-index: 1;
|
|
8031
8031
|
border-color: var(--color-border-warning) !important;
|
|
8032
8032
|
color: var(--color-text-warning) !important;
|
|
8033
8033
|
background-color: var(--color-background-warning);
|
|
8034
8034
|
}
|
|
8035
|
-
.
|
|
8035
|
+
._inputWarning_yeflg_359:hover {
|
|
8036
8036
|
border-color: var(--color-border-warning-hover) !important;
|
|
8037
8037
|
}
|
|
8038
|
-
.
|
|
8038
|
+
._inputWarning_yeflg_359:focus {
|
|
8039
8039
|
position: relative;
|
|
8040
8040
|
outline: none !important;
|
|
8041
8041
|
border-color: var(--color-border-focus) !important;
|
|
8042
8042
|
box-shadow: var(--shadow-focus);
|
|
8043
8043
|
z-index: 3;
|
|
8044
8044
|
}
|
|
8045
|
-
.
|
|
8045
|
+
._inputDisabled_yeflg_394 {
|
|
8046
8046
|
pointer-events: none;
|
|
8047
8047
|
background-color: var(--color-background-disabled);
|
|
8048
8048
|
color: var(--color-text-muted);
|
|
8049
8049
|
}
|
|
8050
|
-
.
|
|
8050
|
+
._hideScrollbars_yeflg_399 {
|
|
8051
8051
|
/* Firefox */
|
|
8052
8052
|
scrollbar-width: none;
|
|
8053
8053
|
/* IE 10+ */
|
|
8054
8054
|
-ms-overflow-style: none;
|
|
8055
8055
|
/* Chrome, Safari and Opera */
|
|
8056
8056
|
}
|
|
8057
|
-
.
|
|
8057
|
+
._hideScrollbars_yeflg_399::-webkit-scrollbar {
|
|
8058
8058
|
display: none;
|
|
8059
8059
|
}
|
|
8060
|
-
.
|
|
8060
|
+
._scrollbars_yeflg_409 {
|
|
8061
8061
|
overflow: overlay;
|
|
8062
8062
|
--scrollbar-color: #00000040;
|
|
8063
8063
|
}
|
|
8064
|
-
.
|
|
8064
|
+
._scrollbars_yeflg_409::-webkit-scrollbar {
|
|
8065
8065
|
display: block;
|
|
8066
8066
|
width: 16px;
|
|
8067
8067
|
z-index: 2;
|
|
8068
8068
|
}
|
|
8069
|
-
.
|
|
8069
|
+
._scrollbars_yeflg_409::-webkit-scrollbar-button {
|
|
8070
8070
|
display: none;
|
|
8071
8071
|
}
|
|
8072
|
-
.
|
|
8072
|
+
._scrollbars_yeflg_409::-webkit-scrollbar-track {
|
|
8073
8073
|
background-color: #00000000;
|
|
8074
8074
|
}
|
|
8075
|
-
.
|
|
8075
|
+
._scrollbars_yeflg_409::-webkit-scrollbar-track-piece {
|
|
8076
8076
|
background-color: #00000000;
|
|
8077
8077
|
}
|
|
8078
|
-
.
|
|
8078
|
+
._scrollbars_yeflg_409::-webkit-scrollbar-thumb {
|
|
8079
8079
|
background-color: #00000000;
|
|
8080
8080
|
border: 5px solid transparent;
|
|
8081
8081
|
border-radius: 24px;
|
|
8082
8082
|
box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;
|
|
8083
8083
|
}
|
|
8084
|
-
.
|
|
8084
|
+
._scrollbars_yeflg_409::-webkit-scrollbar-corner {
|
|
8085
8085
|
background: rgba(0, 0, 0, 0);
|
|
8086
8086
|
}
|
|
8087
8087
|
:root {
|
|
@@ -8096,37 +8096,37 @@ html[data-theme='dark'] {
|
|
|
8096
8096
|
--color-background-drawer-tab-hover: var(--color-primary-muted-700);
|
|
8097
8097
|
--color-border-drawer-tab: var(--color-border);
|
|
8098
8098
|
}
|
|
8099
|
-
.
|
|
8099
|
+
._inline_yeflg_448 {
|
|
8100
8100
|
position: relative;
|
|
8101
8101
|
}
|
|
8102
|
-
.
|
|
8102
|
+
._inline_yeflg_448._left_yeflg_451 {
|
|
8103
8103
|
order: -1;
|
|
8104
8104
|
}
|
|
8105
|
-
.
|
|
8105
|
+
._inline_yeflg_448._right_yeflg_454 {
|
|
8106
8106
|
order: 9999;
|
|
8107
8107
|
}
|
|
8108
|
-
.
|
|
8108
|
+
._fixed_yeflg_457 {
|
|
8109
8109
|
position: fixed;
|
|
8110
8110
|
top: 0;
|
|
8111
8111
|
bottom: 0;
|
|
8112
8112
|
z-index: 99;
|
|
8113
8113
|
}
|
|
8114
|
-
.
|
|
8114
|
+
._fixed_yeflg_457._left_yeflg_451 {
|
|
8115
8115
|
left: 0;
|
|
8116
8116
|
}
|
|
8117
|
-
.
|
|
8117
|
+
._fixed_yeflg_457._right_yeflg_454 {
|
|
8118
8118
|
right: 0;
|
|
8119
8119
|
}
|
|
8120
|
-
.
|
|
8120
|
+
._left_yeflg_451 ._border_yeflg_469 {
|
|
8121
8121
|
border-right: 1px solid var(--color-border);
|
|
8122
8122
|
}
|
|
8123
|
-
.
|
|
8123
|
+
._right_yeflg_454 ._border_yeflg_469 {
|
|
8124
8124
|
border-left: 1px solid var(--color-border);
|
|
8125
8125
|
}
|
|
8126
|
-
.
|
|
8126
|
+
._shadow_yeflg_475 {
|
|
8127
8127
|
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
|
8128
8128
|
}
|
|
8129
|
-
.
|
|
8129
|
+
._drawerContent_yeflg_478 {
|
|
8130
8130
|
overflow-x: hidden;
|
|
8131
8131
|
overflow-y: auto;
|
|
8132
8132
|
max-height: 100%;
|
|
@@ -8138,40 +8138,40 @@ html[data-theme='dark'] {
|
|
|
8138
8138
|
-ms-overflow-style: none;
|
|
8139
8139
|
/* Chrome, Safari and Opera */
|
|
8140
8140
|
}
|
|
8141
|
-
.
|
|
8141
|
+
._isResizing_yeflg_490 ._drawerContent_yeflg_478 {
|
|
8142
8142
|
transition: none;
|
|
8143
8143
|
}
|
|
8144
8144
|
@media print {
|
|
8145
|
-
.
|
|
8145
|
+
._drawerContent_yeflg_478 {
|
|
8146
8146
|
background: transparent !important;
|
|
8147
8147
|
}
|
|
8148
8148
|
}
|
|
8149
|
-
.
|
|
8149
|
+
._drawerContent_yeflg_478::-webkit-scrollbar {
|
|
8150
8150
|
display: none;
|
|
8151
8151
|
}
|
|
8152
|
-
.
|
|
8152
|
+
._toggleButton_yeflg_501 {
|
|
8153
8153
|
transition: transform 0.4s;
|
|
8154
8154
|
display: inline-block;
|
|
8155
8155
|
transform: rotate(180deg);
|
|
8156
8156
|
position: absolute;
|
|
8157
8157
|
z-index: 102;
|
|
8158
8158
|
}
|
|
8159
|
-
.
|
|
8160
|
-
right: -
|
|
8159
|
+
._left_yeflg_451 ._toggleButton_yeflg_501 {
|
|
8160
|
+
right: calc(var(--size) / -2);
|
|
8161
8161
|
}
|
|
8162
|
-
.
|
|
8163
|
-
left: -
|
|
8162
|
+
._right_yeflg_454 ._toggleButton_yeflg_501 {
|
|
8163
|
+
left: calc(var(--size) / -2);
|
|
8164
8164
|
}
|
|
8165
|
-
.
|
|
8165
|
+
._toggleButton_yeflg_501._top_yeflg_514 {
|
|
8166
8166
|
top: 20px;
|
|
8167
8167
|
}
|
|
8168
|
-
.
|
|
8168
|
+
._toggleButton_yeflg_501._bottom_yeflg_517 {
|
|
8169
8169
|
bottom: 20px;
|
|
8170
8170
|
}
|
|
8171
|
-
.
|
|
8171
|
+
._toggleButton_yeflg_501._toggleButtonOpen_yeflg_520 {
|
|
8172
8172
|
transform: rotate(0deg);
|
|
8173
8173
|
}
|
|
8174
|
-
.
|
|
8174
|
+
._tabs_yeflg_523 {
|
|
8175
8175
|
position: absolute;
|
|
8176
8176
|
top: 0;
|
|
8177
8177
|
bottom: 0;
|
|
@@ -8181,13 +8181,13 @@ html[data-theme='dark'] {
|
|
|
8181
8181
|
border-left: 1px solid var(--color-border);
|
|
8182
8182
|
border-right: 1px solid var(--color-border);
|
|
8183
8183
|
}
|
|
8184
|
-
.
|
|
8184
|
+
._left_yeflg_451 ._tabs_yeflg_523 {
|
|
8185
8185
|
right: 0;
|
|
8186
8186
|
}
|
|
8187
|
-
.
|
|
8187
|
+
._right_yeflg_454 ._tabs_yeflg_523 {
|
|
8188
8188
|
left: 0;
|
|
8189
8189
|
}
|
|
8190
|
-
.
|
|
8190
|
+
._tabs_yeflg_523 ._tab_yeflg_523 {
|
|
8191
8191
|
height: 38px;
|
|
8192
8192
|
width: 38px;
|
|
8193
8193
|
display: flex;
|
|
@@ -8198,39 +8198,39 @@ html[data-theme='dark'] {
|
|
|
8198
8198
|
transition: color 0.3s, background-color 0.3s;
|
|
8199
8199
|
border: 1px solid var(--color-border-drawer-tab);
|
|
8200
8200
|
}
|
|
8201
|
-
.
|
|
8201
|
+
._left_yeflg_451 ._tabs_yeflg_523 ._tab_yeflg_523 {
|
|
8202
8202
|
border-top-left-radius: 0;
|
|
8203
8203
|
border-bottom-left-radius: 0;
|
|
8204
8204
|
}
|
|
8205
|
-
.
|
|
8205
|
+
._left_yeflg_451 ._tabs_yeflg_523 ._tab_yeflg_523._active_yeflg_554 {
|
|
8206
8206
|
border-left-color: transparent;
|
|
8207
8207
|
}
|
|
8208
|
-
.
|
|
8208
|
+
._right_yeflg_454 ._tabs_yeflg_523 ._tab_yeflg_523 {
|
|
8209
8209
|
border-top-right-radius: 0;
|
|
8210
8210
|
border-bottom-right-radius: 0;
|
|
8211
8211
|
}
|
|
8212
|
-
.
|
|
8212
|
+
._right_yeflg_454 ._tabs_yeflg_523 ._tab_yeflg_523._active_yeflg_554 {
|
|
8213
8213
|
border-right-color: transparent;
|
|
8214
8214
|
}
|
|
8215
|
-
.
|
|
8215
|
+
._tabs_yeflg_523 ._tab_yeflg_523:not(._active_yeflg_554) {
|
|
8216
8216
|
color: var(--color-text-primary);
|
|
8217
8217
|
background-color: var(--color-background-drawer-tab) !important;
|
|
8218
8218
|
}
|
|
8219
|
-
.
|
|
8219
|
+
._tabs_yeflg_523 ._tab_yeflg_523:not(._active_yeflg_554):hover {
|
|
8220
8220
|
color: var(--color-text);
|
|
8221
8221
|
background-color: var(--color-background-drawer-tab-hover) !important;
|
|
8222
8222
|
}
|
|
8223
|
-
.
|
|
8223
|
+
._tabs_yeflg_523 ._tab_yeflg_523._active_yeflg_554 {
|
|
8224
8224
|
color: var(--color-text);
|
|
8225
8225
|
border-color: var(--color-border);
|
|
8226
8226
|
}
|
|
8227
|
-
.
|
|
8227
|
+
._left_yeflg_451 ._tabsContent_yeflg_576 {
|
|
8228
8228
|
padding-right: 36px;
|
|
8229
8229
|
}
|
|
8230
|
-
.
|
|
8230
|
+
._right_yeflg_454 ._tabsContent_yeflg_576 {
|
|
8231
8231
|
padding-left: 36px;
|
|
8232
8232
|
}
|
|
8233
|
-
.
|
|
8233
|
+
._resizeHandle_yeflg_582 {
|
|
8234
8234
|
position: absolute;
|
|
8235
8235
|
top: 0;
|
|
8236
8236
|
bottom: 0;
|
|
@@ -8243,18 +8243,18 @@ html[data-theme='dark'] {
|
|
|
8243
8243
|
font-size: 12px;
|
|
8244
8244
|
transition: all 0.2s;
|
|
8245
8245
|
}
|
|
8246
|
-
.
|
|
8246
|
+
._resizeHandle_yeflg_582:hover {
|
|
8247
8247
|
background: rgba(235, 100, 41, 0.15);
|
|
8248
8248
|
color: var(--color-text-primary);
|
|
8249
8249
|
}
|
|
8250
|
-
.
|
|
8250
|
+
._resizeHandle_yeflg_582:active {
|
|
8251
8251
|
background: var(--color-text-primary);
|
|
8252
8252
|
color: white;
|
|
8253
8253
|
}
|
|
8254
|
-
.
|
|
8254
|
+
._left_yeflg_451 ._resizeHandle_yeflg_582 {
|
|
8255
8255
|
right: 0;
|
|
8256
8256
|
}
|
|
8257
|
-
.
|
|
8257
|
+
._right_yeflg_454 ._resizeHandle_yeflg_582 {
|
|
8258
8258
|
left: 0;
|
|
8259
8259
|
}
|
|
8260
8260
|
/*
|
|
@@ -23390,103 +23390,103 @@ html[data-theme='dark'] {
|
|
|
23390
23390
|
/*
|
|
23391
23391
|
Z-INDEX
|
|
23392
23392
|
*/
|
|
23393
|
-
.
|
|
23393
|
+
._inputInTable_15p4y_337 {
|
|
23394
23394
|
background-color: transparent;
|
|
23395
23395
|
border-radius: inherit !important;
|
|
23396
23396
|
height: var(--size);
|
|
23397
23397
|
min-height: 100%;
|
|
23398
23398
|
}
|
|
23399
|
-
.
|
|
23399
|
+
._inputInTable_15p4y_337:not(:hover) {
|
|
23400
23400
|
border-color: transparent;
|
|
23401
23401
|
}
|
|
23402
|
-
.
|
|
23402
|
+
._inputHover_15p4y_346 {
|
|
23403
23403
|
position: relative;
|
|
23404
23404
|
border-color: var(--color-border-hover);
|
|
23405
23405
|
z-index: 2;
|
|
23406
23406
|
}
|
|
23407
|
-
.
|
|
23407
|
+
._inputFocus_15p4y_351 {
|
|
23408
23408
|
position: relative;
|
|
23409
23409
|
outline: none !important;
|
|
23410
23410
|
border-color: var(--color-border-focus) !important;
|
|
23411
23411
|
box-shadow: var(--shadow-focus);
|
|
23412
23412
|
z-index: 3;
|
|
23413
23413
|
}
|
|
23414
|
-
.
|
|
23415
|
-
.
|
|
23414
|
+
._inputError_15p4y_358,
|
|
23415
|
+
._inputWarning_15p4y_359 {
|
|
23416
23416
|
position: relative;
|
|
23417
23417
|
}
|
|
23418
|
-
.
|
|
23418
|
+
._inputError_15p4y_358 {
|
|
23419
23419
|
z-index: 2;
|
|
23420
23420
|
border-color: var(--color-border-error) !important;
|
|
23421
23421
|
color: var(--color-text-error) !important;
|
|
23422
23422
|
background-color: var(--color-background-error);
|
|
23423
23423
|
}
|
|
23424
|
-
.
|
|
23424
|
+
._inputError_15p4y_358:hover {
|
|
23425
23425
|
border-color: var(--color-border-error-hover) !important;
|
|
23426
23426
|
}
|
|
23427
|
-
.
|
|
23427
|
+
._inputError_15p4y_358:focus {
|
|
23428
23428
|
position: relative;
|
|
23429
23429
|
outline: none !important;
|
|
23430
23430
|
border-color: var(--color-border-focus) !important;
|
|
23431
23431
|
box-shadow: var(--shadow-focus);
|
|
23432
23432
|
z-index: 3;
|
|
23433
23433
|
}
|
|
23434
|
-
.
|
|
23434
|
+
._inputWarning_15p4y_359 {
|
|
23435
23435
|
z-index: 1;
|
|
23436
23436
|
border-color: var(--color-border-warning) !important;
|
|
23437
23437
|
color: var(--color-text-warning) !important;
|
|
23438
23438
|
background-color: var(--color-background-warning);
|
|
23439
23439
|
}
|
|
23440
|
-
.
|
|
23440
|
+
._inputWarning_15p4y_359:hover {
|
|
23441
23441
|
border-color: var(--color-border-warning-hover) !important;
|
|
23442
23442
|
}
|
|
23443
|
-
.
|
|
23443
|
+
._inputWarning_15p4y_359:focus {
|
|
23444
23444
|
position: relative;
|
|
23445
23445
|
outline: none !important;
|
|
23446
23446
|
border-color: var(--color-border-focus) !important;
|
|
23447
23447
|
box-shadow: var(--shadow-focus);
|
|
23448
23448
|
z-index: 3;
|
|
23449
23449
|
}
|
|
23450
|
-
.
|
|
23450
|
+
._inputDisabled_15p4y_394 {
|
|
23451
23451
|
pointer-events: none;
|
|
23452
23452
|
background-color: var(--color-background-disabled);
|
|
23453
23453
|
color: var(--color-text-muted);
|
|
23454
23454
|
}
|
|
23455
|
-
.
|
|
23455
|
+
._hideScrollbars_15p4y_399 {
|
|
23456
23456
|
/* Firefox */
|
|
23457
23457
|
scrollbar-width: none;
|
|
23458
23458
|
/* IE 10+ */
|
|
23459
23459
|
-ms-overflow-style: none;
|
|
23460
23460
|
/* Chrome, Safari and Opera */
|
|
23461
23461
|
}
|
|
23462
|
-
.
|
|
23462
|
+
._hideScrollbars_15p4y_399::-webkit-scrollbar {
|
|
23463
23463
|
display: none;
|
|
23464
23464
|
}
|
|
23465
|
-
.
|
|
23465
|
+
._scrollbars_15p4y_409 {
|
|
23466
23466
|
overflow: overlay;
|
|
23467
23467
|
--scrollbar-color: #00000040;
|
|
23468
23468
|
}
|
|
23469
|
-
.
|
|
23469
|
+
._scrollbars_15p4y_409::-webkit-scrollbar {
|
|
23470
23470
|
display: block;
|
|
23471
23471
|
width: 16px;
|
|
23472
23472
|
z-index: 2;
|
|
23473
23473
|
}
|
|
23474
|
-
.
|
|
23474
|
+
._scrollbars_15p4y_409::-webkit-scrollbar-button {
|
|
23475
23475
|
display: none;
|
|
23476
23476
|
}
|
|
23477
|
-
.
|
|
23477
|
+
._scrollbars_15p4y_409::-webkit-scrollbar-track {
|
|
23478
23478
|
background-color: #00000000;
|
|
23479
23479
|
}
|
|
23480
|
-
.
|
|
23480
|
+
._scrollbars_15p4y_409::-webkit-scrollbar-track-piece {
|
|
23481
23481
|
background-color: #00000000;
|
|
23482
23482
|
}
|
|
23483
|
-
.
|
|
23483
|
+
._scrollbars_15p4y_409::-webkit-scrollbar-thumb {
|
|
23484
23484
|
background-color: #00000000;
|
|
23485
23485
|
border: 5px solid transparent;
|
|
23486
23486
|
border-radius: 24px;
|
|
23487
23487
|
box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;
|
|
23488
23488
|
}
|
|
23489
|
-
.
|
|
23489
|
+
._scrollbars_15p4y_409::-webkit-scrollbar-corner {
|
|
23490
23490
|
background: rgba(0, 0, 0, 0);
|
|
23491
23491
|
}
|
|
23492
23492
|
:root {
|
|
@@ -23499,72 +23499,78 @@ html[data-theme='dark'] {
|
|
|
23499
23499
|
--color-background-table-row-tinted: var(--color-neutral-850);
|
|
23500
23500
|
--color-border-table: black;
|
|
23501
23501
|
}
|
|
23502
|
-
.
|
|
23502
|
+
._scrollWrapper_15p4y_446 {
|
|
23503
23503
|
overflow: overlay;
|
|
23504
23504
|
--scrollbar-color: #00000040;
|
|
23505
23505
|
padding-left: 1px;
|
|
23506
23506
|
}
|
|
23507
|
-
.
|
|
23507
|
+
._scrollWrapper_15p4y_446::-webkit-scrollbar {
|
|
23508
23508
|
display: block;
|
|
23509
23509
|
width: 16px;
|
|
23510
23510
|
z-index: 2;
|
|
23511
23511
|
}
|
|
23512
|
-
.
|
|
23512
|
+
._scrollWrapper_15p4y_446::-webkit-scrollbar-button {
|
|
23513
23513
|
display: none;
|
|
23514
23514
|
}
|
|
23515
|
-
.
|
|
23515
|
+
._scrollWrapper_15p4y_446::-webkit-scrollbar-track {
|
|
23516
23516
|
background-color: #00000000;
|
|
23517
23517
|
}
|
|
23518
|
-
.
|
|
23518
|
+
._scrollWrapper_15p4y_446::-webkit-scrollbar-track-piece {
|
|
23519
23519
|
background-color: #00000000;
|
|
23520
23520
|
}
|
|
23521
|
-
.
|
|
23521
|
+
._scrollWrapper_15p4y_446::-webkit-scrollbar-thumb {
|
|
23522
23522
|
background-color: #00000000;
|
|
23523
23523
|
border: 5px solid transparent;
|
|
23524
23524
|
border-radius: 24px;
|
|
23525
23525
|
box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;
|
|
23526
23526
|
}
|
|
23527
|
-
.
|
|
23527
|
+
._scrollWrapper_15p4y_446::-webkit-scrollbar-corner {
|
|
23528
23528
|
background: rgba(0, 0, 0, 0);
|
|
23529
23529
|
}
|
|
23530
|
-
.
|
|
23530
|
+
._scrollWrapper_15p4y_446._bordered_15p4y_474 {
|
|
23531
23531
|
border-radius: 4px;
|
|
23532
23532
|
}
|
|
23533
|
-
.
|
|
23533
|
+
._scrollWrapper_15p4y_446 > * {
|
|
23534
|
+
margin-left: -1px;
|
|
23535
|
+
}
|
|
23536
|
+
._table_15p4y_480 {
|
|
23534
23537
|
background: var(--color-background-raised);
|
|
23535
23538
|
color: var(--color-text);
|
|
23536
23539
|
border-collapse: separate;
|
|
23537
23540
|
border-spacing: 0;
|
|
23538
23541
|
border-radius: 4px;
|
|
23539
23542
|
width: 100%;
|
|
23540
|
-
margin-left: -1px;
|
|
23541
23543
|
}
|
|
23542
|
-
.
|
|
23544
|
+
._table_15p4y_480:not(:first-child) {
|
|
23545
|
+
border-top-left-radius: 0;
|
|
23546
|
+
border-top-right-radius: 0;
|
|
23547
|
+
}
|
|
23548
|
+
._table_15p4y_480 > :first-child {
|
|
23543
23549
|
border-top-left-radius: inherit;
|
|
23544
23550
|
border-top-right-radius: inherit;
|
|
23545
23551
|
}
|
|
23546
|
-
.
|
|
23552
|
+
._table_15p4y_480 > :first-child > :first-child {
|
|
23547
23553
|
border-top-left-radius: inherit;
|
|
23548
23554
|
border-top-right-radius: inherit;
|
|
23549
23555
|
}
|
|
23550
|
-
.
|
|
23556
|
+
._table_15p4y_480 > :first-child > :first-child > :first-child {
|
|
23551
23557
|
border-top-left-radius: inherit;
|
|
23552
23558
|
}
|
|
23553
|
-
.
|
|
23559
|
+
._table_15p4y_480 > :first-child > :first-child > :last-child {
|
|
23554
23560
|
border-top-right-radius: inherit;
|
|
23555
23561
|
}
|
|
23556
|
-
.
|
|
23562
|
+
._table_15p4y_480 > :last-child {
|
|
23557
23563
|
border-bottom-left-radius: inherit;
|
|
23558
23564
|
border-bottom-right-radius: inherit;
|
|
23559
23565
|
}
|
|
23560
|
-
.
|
|
23566
|
+
._table_15p4y_480 > :last-child > :last-child {
|
|
23561
23567
|
border-bottom-left-radius: inherit;
|
|
23562
23568
|
border-bottom-right-radius: inherit;
|
|
23563
23569
|
}
|
|
23564
|
-
.
|
|
23570
|
+
._table_15p4y_480 > :last-child > :last-child > :first-child {
|
|
23565
23571
|
border-bottom-left-radius: inherit;
|
|
23566
23572
|
}
|
|
23567
|
-
.
|
|
23573
|
+
._table_15p4y_480 > :last-child > :last-child > :last-child {
|
|
23568
23574
|
border-bottom-right-radius: inherit;
|
|
23569
23575
|
}
|
|
23570
23576
|
th,
|
|
@@ -23580,8 +23586,8 @@ td {
|
|
|
23580
23586
|
border-right-width: 0;
|
|
23581
23587
|
border-bottom-width: 1px;
|
|
23582
23588
|
}
|
|
23583
|
-
.
|
|
23584
|
-
.
|
|
23589
|
+
._bordered_15p4y_474 th:last-child,
|
|
23590
|
+
._bordered_15p4y_474 td:last-child {
|
|
23585
23591
|
border-right-width: 1px;
|
|
23586
23592
|
}
|
|
23587
23593
|
thead:first-child > tr:first-child th,
|
|
@@ -23614,14 +23620,357 @@ tbody {
|
|
|
23614
23620
|
tbody tr {
|
|
23615
23621
|
background-color: var(--color-background-raised);
|
|
23616
23622
|
}
|
|
23617
|
-
.
|
|
23623
|
+
._striped_15p4y_567 tbody tr:nth-child(even) {
|
|
23618
23624
|
background-color: var(--color-background-table-row-tinted);
|
|
23619
23625
|
}
|
|
23620
|
-
|
|
23626
|
+
/*
|
|
23627
|
+
This file has shared variables that are re-used in other LESS files/modules
|
|
23628
|
+
Only use simple variables in this file
|
|
23629
|
+
*/
|
|
23630
|
+
:root {
|
|
23631
|
+
--color-primary-0: hsl(0, 0%, 100%);
|
|
23632
|
+
--color-primary-50: hsl(18.24742268, 82.90598291%, 97.5%);
|
|
23633
|
+
--color-primary-100: hsl(18.24742268, 82.90598291%, 92.5%);
|
|
23634
|
+
--color-primary-150: hsl(18.24742268, 82.90598291%, 87.5%);
|
|
23635
|
+
--color-primary-200: hsl(18.24742268, 82.90598291%, 82.5%);
|
|
23636
|
+
--color-primary-250: hsl(18.24742268, 82.90598291%, 77.5%);
|
|
23637
|
+
--color-primary-300: hsl(18.24742268, 82.90598291%, 72.5%);
|
|
23638
|
+
--color-primary-350: hsl(18.24742268, 82.90598291%, 67.5%);
|
|
23639
|
+
--color-primary-400: hsl(18.24742268, 82.90598291%, 62.5%);
|
|
23640
|
+
--color-primary-450: hsl(18.24742268, 82.90598291%, 57.5%);
|
|
23641
|
+
--color-primary-500: hsl(18.24742268, 82.90598291%, 52.5%);
|
|
23642
|
+
--color-primary-550: hsl(18.24742268, 82.90598291%, 47.5%);
|
|
23643
|
+
--color-primary-600: hsl(18.24742268, 82.90598291%, 42.5%);
|
|
23644
|
+
--color-primary-650: hsl(18.24742268, 82.90598291%, 37.5%);
|
|
23645
|
+
--color-primary-700: hsl(18.24742268, 82.90598291%, 32.5%);
|
|
23646
|
+
--color-primary-750: hsl(18.24742268, 82.90598291%, 27.5%);
|
|
23647
|
+
--color-primary-800: hsl(18.24742268, 82.90598291%, 22.5%);
|
|
23648
|
+
--color-primary-850: hsl(18.24742268, 82.90598291%, 17.5%);
|
|
23649
|
+
--color-primary-900: hsl(18.24742268, 82.90598291%, 12.5%);
|
|
23650
|
+
--color-primary-950: hsl(18.24742268, 82.90598291%, 7.5%);
|
|
23651
|
+
--color-primary-1000: hsl(18.24742268, 82.90598291%, 2.5%);
|
|
23652
|
+
--color-error-0: hsl(180, 100%, 100%);
|
|
23653
|
+
--color-error-50: hsl(0, 71.29186603%, 97.5%);
|
|
23654
|
+
--color-error-100: hsl(0, 71.29186603%, 92.5%);
|
|
23655
|
+
--color-error-150: hsl(0, 71.29186603%, 87.5%);
|
|
23656
|
+
--color-error-200: hsl(0, 71.29186603%, 82.5%);
|
|
23657
|
+
--color-error-250: hsl(0, 71.29186603%, 77.5%);
|
|
23658
|
+
--color-error-300: hsl(0, 71.29186603%, 72.5%);
|
|
23659
|
+
--color-error-350: hsl(0, 71.29186603%, 67.5%);
|
|
23660
|
+
--color-error-400: hsl(0, 71.29186603%, 62.5%);
|
|
23661
|
+
--color-error-450: hsl(0, 71.29186603%, 57.5%);
|
|
23662
|
+
--color-error-500: hsl(0, 71.29186603%, 52.5%);
|
|
23663
|
+
--color-error-550: hsl(0, 71.29186603%, 47.5%);
|
|
23664
|
+
--color-error-600: hsl(0, 71.29186603%, 42.5%);
|
|
23665
|
+
--color-error-650: hsl(0, 71.29186603%, 37.5%);
|
|
23666
|
+
--color-error-700: hsl(0, 71.29186603%, 32.5%);
|
|
23667
|
+
--color-error-750: hsl(0, 71.29186603%, 27.5%);
|
|
23668
|
+
--color-error-800: hsl(0, 71.29186603%, 22.5%);
|
|
23669
|
+
--color-error-850: hsl(0, 71.29186603%, 17.5%);
|
|
23670
|
+
--color-error-900: hsl(0, 71.29186603%, 12.5%);
|
|
23671
|
+
--color-error-950: hsl(0, 71.29186603%, 7.5%);
|
|
23672
|
+
--color-error-1000: hsl(0, 71.29186603%, 2.5%);
|
|
23673
|
+
--color-success-0: hsl(0, 0%, 100%);
|
|
23674
|
+
--color-success-50: hsl(120, 52.03252033%, 97.5%);
|
|
23675
|
+
--color-success-100: hsl(120, 52.03252033%, 92.5%);
|
|
23676
|
+
--color-success-150: hsl(120, 52.03252033%, 87.5%);
|
|
23677
|
+
--color-success-200: hsl(120, 52.03252033%, 82.5%);
|
|
23678
|
+
--color-success-250: hsl(120, 52.03252033%, 77.5%);
|
|
23679
|
+
--color-success-300: hsl(120, 52.03252033%, 72.5%);
|
|
23680
|
+
--color-success-350: hsl(120, 52.03252033%, 67.5%);
|
|
23681
|
+
--color-success-400: hsl(120, 52.03252033%, 62.5%);
|
|
23682
|
+
--color-success-450: hsl(120, 52.03252033%, 57.5%);
|
|
23683
|
+
--color-success-500: hsl(120, 52.03252033%, 52.5%);
|
|
23684
|
+
--color-success-550: hsl(120, 52.03252033%, 47.5%);
|
|
23685
|
+
--color-success-600: hsl(120, 52.03252033%, 42.5%);
|
|
23686
|
+
--color-success-650: hsl(120, 52.03252033%, 37.5%);
|
|
23687
|
+
--color-success-700: hsl(120, 52.03252033%, 32.5%);
|
|
23688
|
+
--color-success-750: hsl(120, 52.03252033%, 27.5%);
|
|
23689
|
+
--color-success-800: hsl(120, 52.03252033%, 22.5%);
|
|
23690
|
+
--color-success-850: hsl(120, 52.03252033%, 17.5%);
|
|
23691
|
+
--color-success-900: hsl(120, 52.03252033%, 12.5%);
|
|
23692
|
+
--color-success-950: hsl(120, 52.03252033%, 7.5%);
|
|
23693
|
+
--color-success-1000: hsl(120, 52.03252033%, 2.5%);
|
|
23694
|
+
--color-warning-0: hsl(240, 100%, 100%);
|
|
23695
|
+
--color-warning-50: hsl(44.9197861, 76.32653061%, 97.5%);
|
|
23696
|
+
--color-warning-100: hsl(44.9197861, 76.32653061%, 92.5%);
|
|
23697
|
+
--color-warning-150: hsl(44.9197861, 76.32653061%, 87.5%);
|
|
23698
|
+
--color-warning-200: hsl(44.9197861, 76.32653061%, 82.5%);
|
|
23699
|
+
--color-warning-250: hsl(44.9197861, 76.32653061%, 77.5%);
|
|
23700
|
+
--color-warning-300: hsl(44.9197861, 76.32653061%, 72.5%);
|
|
23701
|
+
--color-warning-350: hsl(44.9197861, 76.32653061%, 67.5%);
|
|
23702
|
+
--color-warning-400: hsl(44.9197861, 76.32653061%, 62.5%);
|
|
23703
|
+
--color-warning-450: hsl(44.9197861, 76.32653061%, 57.5%);
|
|
23704
|
+
--color-warning-500: hsl(44.9197861, 76.32653061%, 52.5%);
|
|
23705
|
+
--color-warning-550: hsl(44.9197861, 76.32653061%, 47.5%);
|
|
23706
|
+
--color-warning-600: hsl(44.9197861, 76.32653061%, 42.5%);
|
|
23707
|
+
--color-warning-650: hsl(44.9197861, 76.32653061%, 37.5%);
|
|
23708
|
+
--color-warning-700: hsl(44.9197861, 76.32653061%, 32.5%);
|
|
23709
|
+
--color-warning-750: hsl(44.9197861, 76.32653061%, 27.5%);
|
|
23710
|
+
--color-warning-800: hsl(44.9197861, 76.32653061%, 22.5%);
|
|
23711
|
+
--color-warning-850: hsl(44.9197861, 76.32653061%, 17.5%);
|
|
23712
|
+
--color-warning-900: hsl(44.9197861, 76.32653061%, 12.5%);
|
|
23713
|
+
--color-warning-950: hsl(44.9197861, 76.32653061%, 7.5%);
|
|
23714
|
+
--color-warning-1000: hsl(44.9197861, 76.32653061%, 2.5%);
|
|
23715
|
+
--color-info-0: hsl(0, 0%, 100%);
|
|
23716
|
+
--color-info-50: hsl(201.03092784, 82.90598291%, 97.5%);
|
|
23717
|
+
--color-info-100: hsl(201.03092784, 82.90598291%, 92.5%);
|
|
23718
|
+
--color-info-150: hsl(201.03092784, 82.90598291%, 87.5%);
|
|
23719
|
+
--color-info-200: hsl(201.03092784, 82.90598291%, 82.5%);
|
|
23720
|
+
--color-info-250: hsl(201.03092784, 82.90598291%, 77.5%);
|
|
23721
|
+
--color-info-300: hsl(201.03092784, 82.90598291%, 72.5%);
|
|
23722
|
+
--color-info-350: hsl(201.03092784, 82.90598291%, 67.5%);
|
|
23723
|
+
--color-info-400: hsl(201.03092784, 82.90598291%, 62.5%);
|
|
23724
|
+
--color-info-450: hsl(201.03092784, 82.90598291%, 57.5%);
|
|
23725
|
+
--color-info-500: hsl(201.03092784, 82.90598291%, 52.5%);
|
|
23726
|
+
--color-info-550: hsl(201.03092784, 82.90598291%, 47.5%);
|
|
23727
|
+
--color-info-600: hsl(201.03092784, 82.90598291%, 42.5%);
|
|
23728
|
+
--color-info-650: hsl(201.03092784, 82.90598291%, 37.5%);
|
|
23729
|
+
--color-info-700: hsl(201.03092784, 82.90598291%, 32.5%);
|
|
23730
|
+
--color-info-750: hsl(201.03092784, 82.90598291%, 27.5%);
|
|
23731
|
+
--color-info-800: hsl(201.03092784, 82.90598291%, 22.5%);
|
|
23732
|
+
--color-info-850: hsl(201.03092784, 82.90598291%, 17.5%);
|
|
23733
|
+
--color-info-900: hsl(201.03092784, 82.90598291%, 12.5%);
|
|
23734
|
+
--color-info-950: hsl(201.03092784, 82.90598291%, 7.5%);
|
|
23735
|
+
--color-info-1000: hsl(201.03092784, 82.90598291%, 2.5%);
|
|
23736
|
+
--color-neutral-0: hsl(0, 0%, 100%);
|
|
23737
|
+
--color-neutral-50: hsl(210, 10%, 97.5%);
|
|
23738
|
+
--color-neutral-100: hsl(210, 10%, 92.5%);
|
|
23739
|
+
--color-neutral-150: hsl(210, 10%, 87.5%);
|
|
23740
|
+
--color-neutral-200: hsl(210, 10%, 82.5%);
|
|
23741
|
+
--color-neutral-250: hsl(210, 10%, 77.5%);
|
|
23742
|
+
--color-neutral-300: hsl(210, 10%, 72.5%);
|
|
23743
|
+
--color-neutral-350: hsl(210, 10%, 67.5%);
|
|
23744
|
+
--color-neutral-400: hsl(210, 10%, 62.5%);
|
|
23745
|
+
--color-neutral-450: hsl(210, 10%, 57.5%);
|
|
23746
|
+
--color-neutral-500: hsl(210, 10%, 52.5%);
|
|
23747
|
+
--color-neutral-550: hsl(210, 10%, 47.5%);
|
|
23748
|
+
--color-neutral-600: hsl(210, 10%, 42.5%);
|
|
23749
|
+
--color-neutral-650: hsl(210, 10%, 37.5%);
|
|
23750
|
+
--color-neutral-700: hsl(210, 10%, 32.5%);
|
|
23751
|
+
--color-neutral-750: hsl(210, 10%, 27.5%);
|
|
23752
|
+
--color-neutral-800: hsl(210, 10%, 22.5%);
|
|
23753
|
+
--color-neutral-850: hsl(210, 10%, 17.5%);
|
|
23754
|
+
--color-neutral-900: hsl(210, 10%, 12.5%);
|
|
23755
|
+
--color-neutral-950: hsl(210, 10%, 7.5%);
|
|
23756
|
+
--color-neutral-1000: hsl(210, 10%, 2.5%);
|
|
23757
|
+
--color-primary-muted-0: hsl(0, 0%, 100%);
|
|
23758
|
+
--color-primary-muted-50: hsl(18.24742268, 57.90598291%, 97.5%);
|
|
23759
|
+
--color-primary-muted-100: hsl(18.24742268, 57.90598291%, 92.5%);
|
|
23760
|
+
--color-primary-muted-150: hsl(18.24742268, 57.90598291%, 87.5%);
|
|
23761
|
+
--color-primary-muted-200: hsl(18.24742268, 57.90598291%, 82.5%);
|
|
23762
|
+
--color-primary-muted-250: hsl(18.24742268, 57.90598291%, 77.5%);
|
|
23763
|
+
--color-primary-muted-300: hsl(18.24742268, 57.90598291%, 72.5%);
|
|
23764
|
+
--color-primary-muted-350: hsl(18.24742268, 57.90598291%, 67.5%);
|
|
23765
|
+
--color-primary-muted-400: hsl(18.24742268, 57.90598291%, 62.5%);
|
|
23766
|
+
--color-primary-muted-450: hsl(18.24742268, 57.90598291%, 57.5%);
|
|
23767
|
+
--color-primary-muted-500: hsl(18.24742268, 57.90598291%, 52.5%);
|
|
23768
|
+
--color-primary-muted-550: hsl(18.24742268, 57.90598291%, 47.5%);
|
|
23769
|
+
--color-primary-muted-600: hsl(18.24742268, 57.90598291%, 42.5%);
|
|
23770
|
+
--color-primary-muted-650: hsl(18.24742268, 57.90598291%, 37.5%);
|
|
23771
|
+
--color-primary-muted-700: hsl(18.24742268, 57.90598291%, 32.5%);
|
|
23772
|
+
--color-primary-muted-750: hsl(18.24742268, 57.90598291%, 27.5%);
|
|
23773
|
+
--color-primary-muted-800: hsl(18.24742268, 57.90598291%, 22.5%);
|
|
23774
|
+
--color-primary-muted-850: hsl(18.24742268, 57.90598291%, 17.5%);
|
|
23775
|
+
--color-primary-muted-900: hsl(18.24742268, 57.90598291%, 12.5%);
|
|
23776
|
+
--color-primary-muted-950: hsl(18.24742268, 57.90598291%, 7.5%);
|
|
23777
|
+
--color-primary-muted-1000: hsl(18.24742268, 57.90598291%, 2.5%);
|
|
23778
|
+
--color-error-muted-0: hsl(180, 100%, 100%);
|
|
23779
|
+
--color-error-muted-50: hsl(0, 46.29186603%, 97.5%);
|
|
23780
|
+
--color-error-muted-100: hsl(0, 46.29186603%, 92.5%);
|
|
23781
|
+
--color-error-muted-150: hsl(0, 46.29186603%, 87.5%);
|
|
23782
|
+
--color-error-muted-200: hsl(0, 46.29186603%, 82.5%);
|
|
23783
|
+
--color-error-muted-250: hsl(0, 46.29186603%, 77.5%);
|
|
23784
|
+
--color-error-muted-300: hsl(0, 46.29186603%, 72.5%);
|
|
23785
|
+
--color-error-muted-350: hsl(0, 46.29186603%, 67.5%);
|
|
23786
|
+
--color-error-muted-400: hsl(0, 46.29186603%, 62.5%);
|
|
23787
|
+
--color-error-muted-450: hsl(0, 46.29186603%, 57.5%);
|
|
23788
|
+
--color-error-muted-500: hsl(0, 46.29186603%, 52.5%);
|
|
23789
|
+
--color-error-muted-550: hsl(0, 46.29186603%, 47.5%);
|
|
23790
|
+
--color-error-muted-600: hsl(0, 46.29186603%, 42.5%);
|
|
23791
|
+
--color-error-muted-650: hsl(0, 46.29186603%, 37.5%);
|
|
23792
|
+
--color-error-muted-700: hsl(0, 46.29186603%, 32.5%);
|
|
23793
|
+
--color-error-muted-750: hsl(0, 46.29186603%, 27.5%);
|
|
23794
|
+
--color-error-muted-800: hsl(0, 46.29186603%, 22.5%);
|
|
23795
|
+
--color-error-muted-850: hsl(0, 46.29186603%, 17.5%);
|
|
23796
|
+
--color-error-muted-900: hsl(0, 46.29186603%, 12.5%);
|
|
23797
|
+
--color-error-muted-950: hsl(0, 46.29186603%, 7.5%);
|
|
23798
|
+
--color-error-muted-1000: hsl(0, 46.29186603%, 2.5%);
|
|
23799
|
+
--color-success-muted-0: hsl(0, 0%, 100%);
|
|
23800
|
+
--color-success-muted-50: hsl(120, 27.03252033%, 97.5%);
|
|
23801
|
+
--color-success-muted-100: hsl(120, 27.03252033%, 92.5%);
|
|
23802
|
+
--color-success-muted-150: hsl(120, 27.03252033%, 87.5%);
|
|
23803
|
+
--color-success-muted-200: hsl(120, 27.03252033%, 82.5%);
|
|
23804
|
+
--color-success-muted-250: hsl(120, 27.03252033%, 77.5%);
|
|
23805
|
+
--color-success-muted-300: hsl(120, 27.03252033%, 72.5%);
|
|
23806
|
+
--color-success-muted-350: hsl(120, 27.03252033%, 67.5%);
|
|
23807
|
+
--color-success-muted-400: hsl(120, 27.03252033%, 62.5%);
|
|
23808
|
+
--color-success-muted-450: hsl(120, 27.03252033%, 57.5%);
|
|
23809
|
+
--color-success-muted-500: hsl(120, 27.03252033%, 52.5%);
|
|
23810
|
+
--color-success-muted-550: hsl(120, 27.03252033%, 47.5%);
|
|
23811
|
+
--color-success-muted-600: hsl(120, 27.03252033%, 42.5%);
|
|
23812
|
+
--color-success-muted-650: hsl(120, 27.03252033%, 37.5%);
|
|
23813
|
+
--color-success-muted-700: hsl(120, 27.03252033%, 32.5%);
|
|
23814
|
+
--color-success-muted-750: hsl(120, 27.03252033%, 27.5%);
|
|
23815
|
+
--color-success-muted-800: hsl(120, 27.03252033%, 22.5%);
|
|
23816
|
+
--color-success-muted-850: hsl(120, 27.03252033%, 17.5%);
|
|
23817
|
+
--color-success-muted-900: hsl(120, 27.03252033%, 12.5%);
|
|
23818
|
+
--color-success-muted-950: hsl(120, 27.03252033%, 7.5%);
|
|
23819
|
+
--color-success-muted-1000: hsl(120, 27.03252033%, 2.5%);
|
|
23820
|
+
--color-warning-muted-0: hsl(240, 100%, 100%);
|
|
23821
|
+
--color-warning-muted-50: hsl(44.9197861, 51.32653061%, 97.5%);
|
|
23822
|
+
--color-warning-muted-100: hsl(44.9197861, 51.32653061%, 92.5%);
|
|
23823
|
+
--color-warning-muted-150: hsl(44.9197861, 51.32653061%, 87.5%);
|
|
23824
|
+
--color-warning-muted-200: hsl(44.9197861, 51.32653061%, 82.5%);
|
|
23825
|
+
--color-warning-muted-250: hsl(44.9197861, 51.32653061%, 77.5%);
|
|
23826
|
+
--color-warning-muted-300: hsl(44.9197861, 51.32653061%, 72.5%);
|
|
23827
|
+
--color-warning-muted-350: hsl(44.9197861, 51.32653061%, 67.5%);
|
|
23828
|
+
--color-warning-muted-400: hsl(44.9197861, 51.32653061%, 62.5%);
|
|
23829
|
+
--color-warning-muted-450: hsl(44.9197861, 51.32653061%, 57.5%);
|
|
23830
|
+
--color-warning-muted-500: hsl(44.9197861, 51.32653061%, 52.5%);
|
|
23831
|
+
--color-warning-muted-550: hsl(44.9197861, 51.32653061%, 47.5%);
|
|
23832
|
+
--color-warning-muted-600: hsl(44.9197861, 51.32653061%, 42.5%);
|
|
23833
|
+
--color-warning-muted-650: hsl(44.9197861, 51.32653061%, 37.5%);
|
|
23834
|
+
--color-warning-muted-700: hsl(44.9197861, 51.32653061%, 32.5%);
|
|
23835
|
+
--color-warning-muted-750: hsl(44.9197861, 51.32653061%, 27.5%);
|
|
23836
|
+
--color-warning-muted-800: hsl(44.9197861, 51.32653061%, 22.5%);
|
|
23837
|
+
--color-warning-muted-850: hsl(44.9197861, 51.32653061%, 17.5%);
|
|
23838
|
+
--color-warning-muted-900: hsl(44.9197861, 51.32653061%, 12.5%);
|
|
23839
|
+
--color-warning-muted-950: hsl(44.9197861, 51.32653061%, 7.5%);
|
|
23840
|
+
--color-warning-muted-1000: hsl(44.9197861, 51.32653061%, 2.5%);
|
|
23841
|
+
--color-info-muted-0: hsl(0, 0%, 100%);
|
|
23842
|
+
--color-info-muted-50: hsl(201.03092784, 57.90598291%, 97.5%);
|
|
23843
|
+
--color-info-muted-100: hsl(201.03092784, 57.90598291%, 92.5%);
|
|
23844
|
+
--color-info-muted-150: hsl(201.03092784, 57.90598291%, 87.5%);
|
|
23845
|
+
--color-info-muted-200: hsl(201.03092784, 57.90598291%, 82.5%);
|
|
23846
|
+
--color-info-muted-250: hsl(201.03092784, 57.90598291%, 77.5%);
|
|
23847
|
+
--color-info-muted-300: hsl(201.03092784, 57.90598291%, 72.5%);
|
|
23848
|
+
--color-info-muted-350: hsl(201.03092784, 57.90598291%, 67.5%);
|
|
23849
|
+
--color-info-muted-400: hsl(201.03092784, 57.90598291%, 62.5%);
|
|
23850
|
+
--color-info-muted-450: hsl(201.03092784, 57.90598291%, 57.5%);
|
|
23851
|
+
--color-info-muted-500: hsl(201.03092784, 57.90598291%, 52.5%);
|
|
23852
|
+
--color-info-muted-550: hsl(201.03092784, 57.90598291%, 47.5%);
|
|
23853
|
+
--color-info-muted-600: hsl(201.03092784, 57.90598291%, 42.5%);
|
|
23854
|
+
--color-info-muted-650: hsl(201.03092784, 57.90598291%, 37.5%);
|
|
23855
|
+
--color-info-muted-700: hsl(201.03092784, 57.90598291%, 32.5%);
|
|
23856
|
+
--color-info-muted-750: hsl(201.03092784, 57.90598291%, 27.5%);
|
|
23857
|
+
--color-info-muted-800: hsl(201.03092784, 57.90598291%, 22.5%);
|
|
23858
|
+
--color-info-muted-850: hsl(201.03092784, 57.90598291%, 17.5%);
|
|
23859
|
+
--color-info-muted-900: hsl(201.03092784, 57.90598291%, 12.5%);
|
|
23860
|
+
--color-info-muted-950: hsl(201.03092784, 57.90598291%, 7.5%);
|
|
23861
|
+
--color-info-muted-1000: hsl(201.03092784, 57.90598291%, 2.5%);
|
|
23862
|
+
}
|
|
23863
|
+
:root {
|
|
23864
|
+
color-scheme: initial;
|
|
23865
|
+
--size: 32px;
|
|
23866
|
+
--size-sm: 24px;
|
|
23867
|
+
--size-xs: 16px;
|
|
23868
|
+
--spacing-3xl: 36px;
|
|
23869
|
+
--spacing-2xl: 32px;
|
|
23870
|
+
--spacing-xl: 28px;
|
|
23871
|
+
--spacing-lg: 24px;
|
|
23872
|
+
--spacing: 20px;
|
|
23873
|
+
--spacing-sm: 16px;
|
|
23874
|
+
--spacing-xs: 12px;
|
|
23875
|
+
--spacing-2xs: 8px;
|
|
23876
|
+
--spacing-3xs: 4px;
|
|
23877
|
+
--padding-input-x: var(--spacing-xs);
|
|
23878
|
+
--padding-input-y: var(--spacing-2xs);
|
|
23879
|
+
--border-radius: 4px;
|
|
23880
|
+
--color-text: rgba(0, 0, 0, 0.87);
|
|
23881
|
+
--color-text-muted: #7d7b7a;
|
|
23882
|
+
--color-text-faint: #acabab;
|
|
23883
|
+
--color-text-error: hsl(0, 40%, 50%);
|
|
23884
|
+
--color-text-warning: var(--color-warning-700);
|
|
23885
|
+
--color-text-success: hsl(120, 40%, 50%);
|
|
23886
|
+
--color-text-info: hsl(201.03092784, 40%, 50%);
|
|
23887
|
+
--color-text-primary: #eb6429;
|
|
23888
|
+
--color-text-primary-hover: #ce4c13;
|
|
23889
|
+
--color-text-primary-active: #9f3b0f;
|
|
23890
|
+
--color-text-placeholder: rgba(0, 0, 0, 0.3);
|
|
23891
|
+
--color-background: #f5f7f9;
|
|
23892
|
+
--color-background-raised: white;
|
|
23893
|
+
--color-background-disabled: rgba(0, 0, 0, 0.025);
|
|
23894
|
+
--color-background-info: hsl(201.03092784, 40%, 90%);
|
|
23895
|
+
--color-background-error: hsl(0, 40%, 90%);
|
|
23896
|
+
--color-background-success: hsl(120, 40%, 90%);
|
|
23897
|
+
--color-background-warning: var(--color-warning-100);
|
|
23898
|
+
--color-background-primary: #eb6429;
|
|
23899
|
+
--color-background-input: white;
|
|
23900
|
+
--color-background-listitem-active: #fff0e4;
|
|
23901
|
+
--color-background-listitem-hover: #f5f7f9;
|
|
23902
|
+
--color-background-menuitem-active: #edf1f4;
|
|
23903
|
+
--color-background-menuitem-hover: #f5f7f9;
|
|
23904
|
+
--color-background-menuitem-activehover: #e5eaef;
|
|
23905
|
+
--color-border: #ddd;
|
|
23906
|
+
--color-border-checkbox: var(--color-neutral-300);
|
|
23907
|
+
--color-border-hover: var(--color-neutral-400);
|
|
23908
|
+
--color-border-focus: var(--color-info-muted-500);
|
|
23909
|
+
--color-border-error: var(--color-error-muted-300);
|
|
23910
|
+
--color-border-error-hover: var(--color-error-muted-400);
|
|
23911
|
+
--color-border-warning: var(--color-warning-muted-300);
|
|
23912
|
+
--color-border-warning-hover: var(--color-warning-muted-400);
|
|
23913
|
+
--shadow-focus: 0 0 0 2px rgba(41, 167, 235, 0.25);
|
|
23914
|
+
}
|
|
23915
|
+
html[data-theme='dark'] {
|
|
23916
|
+
color-scheme: dark;
|
|
23917
|
+
--color-text: var(--color-neutral-200);
|
|
23918
|
+
--color-text-muted: var(--color-neutral-400);
|
|
23919
|
+
--color-text-faint: var(--color-neutral-600);
|
|
23920
|
+
--color-text-primary: var(--color-primary-muted-450);
|
|
23921
|
+
--color-text-primary-active: var(--color-primary-muted-350);
|
|
23922
|
+
--color-text-primary-hover: var(--color-primary-muted-400);
|
|
23923
|
+
--color-text-error: var(--color-error-muted-300);
|
|
23924
|
+
--color-text-info: var(--color-info-muted-300);
|
|
23925
|
+
--color-text-success: var(--color-success-muted-300);
|
|
23926
|
+
--color-text-warning: var(--color-warning-muted-300);
|
|
23927
|
+
--color-text-placeholder: rgba(255, 255, 255, 0.3);
|
|
23928
|
+
--color-background: var(--color-neutral-900);
|
|
23929
|
+
--color-background-raised: var(--color-neutral-800);
|
|
23930
|
+
--color-background-disabled: rgba(0, 0, 0, 0.2);
|
|
23931
|
+
--color-background-error: var(--color-error-muted-700);
|
|
23932
|
+
--color-background-info: var(--color-info-muted-700);
|
|
23933
|
+
--color-background-success: var(--color-success-muted-700);
|
|
23934
|
+
--color-background-warning: var(--color-warning-muted-700);
|
|
23935
|
+
--color-background-primary: var(--color-primary-muted-500);
|
|
23936
|
+
--color-background-input: var(--color-neutral-750);
|
|
23937
|
+
--color-background-listitem-active: var(--color-primary-muted-750);
|
|
23938
|
+
--color-background-listitem-hover: var(--color-neutral-750);
|
|
23939
|
+
--color-background-menuitem-active: var(--color-neutral-650);
|
|
23940
|
+
--color-background-menuitem-hover: var(--color-neutral-700);
|
|
23941
|
+
--color-background-menuitem-activehover: var(--color-neutral-600);
|
|
23942
|
+
--color-border: var(--color-neutral-1000);
|
|
23943
|
+
--color-border-checkbox: var(--color-neutral-1000);
|
|
23944
|
+
--color-border-hover: var(--color-neutral-500);
|
|
23945
|
+
--color-border-focus: var(--color-info-500);
|
|
23946
|
+
--color-border-error: var(--color-neutral-1000);
|
|
23947
|
+
--color-border-warning: var(--color-neutral-1000);
|
|
23948
|
+
--shadow-focus: 0 0 0 2px rgba(41, 167, 235, 0.5);
|
|
23949
|
+
}
|
|
23950
|
+
/*
|
|
23951
|
+
LAYOUT
|
|
23952
|
+
*/
|
|
23953
|
+
/*
|
|
23954
|
+
CARDS
|
|
23955
|
+
*/
|
|
23956
|
+
/*
|
|
23957
|
+
INPUTS
|
|
23958
|
+
*/
|
|
23959
|
+
/*
|
|
23960
|
+
Z-INDEX
|
|
23961
|
+
*/
|
|
23962
|
+
._title_83v84_337 {
|
|
23963
|
+
background-color: var(--color-background);
|
|
23964
|
+
border: 1px solid var(--color-border);
|
|
23965
|
+
padding: 6.5px 12px;
|
|
23621
23966
|
display: flex;
|
|
23622
23967
|
align-items: center;
|
|
23623
23968
|
justify-content: space-between;
|
|
23624
23969
|
gap: 4px;
|
|
23970
|
+
width: 100%;
|
|
23971
|
+
border-top-left-radius: inherit;
|
|
23972
|
+
border-top-right-radius: inherit;
|
|
23973
|
+
margin-bottom: -1px;
|
|
23625
23974
|
}
|
|
23626
23975
|
/*
|
|
23627
23976
|
This file has shared variables that are re-used in other LESS files/modules
|
|
@@ -24312,149 +24661,149 @@ html[data-theme='dark'] {
|
|
|
24312
24661
|
/*
|
|
24313
24662
|
Z-INDEX
|
|
24314
24663
|
*/
|
|
24315
|
-
.
|
|
24664
|
+
._inputInTable_ibs3l_337 {
|
|
24316
24665
|
background-color: transparent;
|
|
24317
24666
|
border-radius: inherit !important;
|
|
24318
24667
|
height: var(--size);
|
|
24319
24668
|
min-height: 100%;
|
|
24320
24669
|
}
|
|
24321
|
-
.
|
|
24670
|
+
._inputInTable_ibs3l_337:not(:hover) {
|
|
24322
24671
|
border-color: transparent;
|
|
24323
24672
|
}
|
|
24324
|
-
.
|
|
24673
|
+
._inputHover_ibs3l_346 {
|
|
24325
24674
|
position: relative;
|
|
24326
24675
|
border-color: var(--color-border-hover);
|
|
24327
24676
|
z-index: 2;
|
|
24328
24677
|
}
|
|
24329
|
-
.
|
|
24678
|
+
._inputFocus_ibs3l_351 {
|
|
24330
24679
|
position: relative;
|
|
24331
24680
|
outline: none !important;
|
|
24332
24681
|
border-color: var(--color-border-focus) !important;
|
|
24333
24682
|
box-shadow: var(--shadow-focus);
|
|
24334
24683
|
z-index: 3;
|
|
24335
24684
|
}
|
|
24336
|
-
.
|
|
24337
|
-
.
|
|
24685
|
+
._inputError_ibs3l_358,
|
|
24686
|
+
._inputWarning_ibs3l_359 {
|
|
24338
24687
|
position: relative;
|
|
24339
24688
|
}
|
|
24340
|
-
.
|
|
24689
|
+
._inputError_ibs3l_358 {
|
|
24341
24690
|
z-index: 2;
|
|
24342
24691
|
border-color: var(--color-border-error) !important;
|
|
24343
24692
|
color: var(--color-text-error) !important;
|
|
24344
24693
|
background-color: var(--color-background-error);
|
|
24345
24694
|
}
|
|
24346
|
-
.
|
|
24695
|
+
._inputError_ibs3l_358:hover {
|
|
24347
24696
|
border-color: var(--color-border-error-hover) !important;
|
|
24348
24697
|
}
|
|
24349
|
-
.
|
|
24698
|
+
._inputError_ibs3l_358:focus {
|
|
24350
24699
|
position: relative;
|
|
24351
24700
|
outline: none !important;
|
|
24352
24701
|
border-color: var(--color-border-focus) !important;
|
|
24353
24702
|
box-shadow: var(--shadow-focus);
|
|
24354
24703
|
z-index: 3;
|
|
24355
24704
|
}
|
|
24356
|
-
.
|
|
24705
|
+
._inputWarning_ibs3l_359 {
|
|
24357
24706
|
z-index: 1;
|
|
24358
24707
|
border-color: var(--color-border-warning) !important;
|
|
24359
24708
|
color: var(--color-text-warning) !important;
|
|
24360
24709
|
background-color: var(--color-background-warning);
|
|
24361
24710
|
}
|
|
24362
|
-
.
|
|
24711
|
+
._inputWarning_ibs3l_359:hover {
|
|
24363
24712
|
border-color: var(--color-border-warning-hover) !important;
|
|
24364
24713
|
}
|
|
24365
|
-
.
|
|
24714
|
+
._inputWarning_ibs3l_359:focus {
|
|
24366
24715
|
position: relative;
|
|
24367
24716
|
outline: none !important;
|
|
24368
24717
|
border-color: var(--color-border-focus) !important;
|
|
24369
24718
|
box-shadow: var(--shadow-focus);
|
|
24370
24719
|
z-index: 3;
|
|
24371
24720
|
}
|
|
24372
|
-
.
|
|
24721
|
+
._inputDisabled_ibs3l_394 {
|
|
24373
24722
|
pointer-events: none;
|
|
24374
24723
|
background-color: var(--color-background-disabled);
|
|
24375
24724
|
color: var(--color-text-muted);
|
|
24376
24725
|
}
|
|
24377
|
-
.
|
|
24726
|
+
._hideScrollbars_ibs3l_399 {
|
|
24378
24727
|
/* Firefox */
|
|
24379
24728
|
scrollbar-width: none;
|
|
24380
24729
|
/* IE 10+ */
|
|
24381
24730
|
-ms-overflow-style: none;
|
|
24382
24731
|
/* Chrome, Safari and Opera */
|
|
24383
24732
|
}
|
|
24384
|
-
.
|
|
24733
|
+
._hideScrollbars_ibs3l_399::-webkit-scrollbar {
|
|
24385
24734
|
display: none;
|
|
24386
24735
|
}
|
|
24387
|
-
.
|
|
24736
|
+
._scrollbars_ibs3l_409 {
|
|
24388
24737
|
overflow: overlay;
|
|
24389
24738
|
--scrollbar-color: #00000040;
|
|
24390
24739
|
}
|
|
24391
|
-
.
|
|
24740
|
+
._scrollbars_ibs3l_409::-webkit-scrollbar {
|
|
24392
24741
|
display: block;
|
|
24393
24742
|
width: 16px;
|
|
24394
24743
|
z-index: 2;
|
|
24395
24744
|
}
|
|
24396
|
-
.
|
|
24745
|
+
._scrollbars_ibs3l_409::-webkit-scrollbar-button {
|
|
24397
24746
|
display: none;
|
|
24398
24747
|
}
|
|
24399
|
-
.
|
|
24748
|
+
._scrollbars_ibs3l_409::-webkit-scrollbar-track {
|
|
24400
24749
|
background-color: #00000000;
|
|
24401
24750
|
}
|
|
24402
|
-
.
|
|
24751
|
+
._scrollbars_ibs3l_409::-webkit-scrollbar-track-piece {
|
|
24403
24752
|
background-color: #00000000;
|
|
24404
24753
|
}
|
|
24405
|
-
.
|
|
24754
|
+
._scrollbars_ibs3l_409::-webkit-scrollbar-thumb {
|
|
24406
24755
|
background-color: #00000000;
|
|
24407
24756
|
border: 5px solid transparent;
|
|
24408
24757
|
border-radius: 24px;
|
|
24409
24758
|
box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;
|
|
24410
24759
|
}
|
|
24411
|
-
.
|
|
24760
|
+
._scrollbars_ibs3l_409::-webkit-scrollbar-corner {
|
|
24412
24761
|
background: rgba(0, 0, 0, 0);
|
|
24413
24762
|
}
|
|
24414
|
-
.
|
|
24763
|
+
._cell_ibs3l_436 a {
|
|
24415
24764
|
cursor: pointer;
|
|
24416
24765
|
color: var(--color-text-primary) !important;
|
|
24417
24766
|
}
|
|
24418
|
-
.
|
|
24767
|
+
._cell_ibs3l_436 a:hover {
|
|
24419
24768
|
color: var(--color-text-primary-hover) !important;
|
|
24420
24769
|
}
|
|
24421
|
-
.
|
|
24770
|
+
._cell_ibs3l_436 a:active {
|
|
24422
24771
|
color: var(--color-text-primary-active) !important;
|
|
24423
24772
|
}
|
|
24424
|
-
.
|
|
24773
|
+
._cell_ibs3l_436 a._disabledLink_ibs3l_446 {
|
|
24425
24774
|
color: var(--color-text-faint) !important;
|
|
24426
24775
|
cursor: default !important;
|
|
24427
24776
|
}
|
|
24428
|
-
.
|
|
24777
|
+
._inputWrapper_ibs3l_450 {
|
|
24429
24778
|
margin: -1px;
|
|
24430
24779
|
height: calc(100% + 2px);
|
|
24431
24780
|
border-radius: inherit;
|
|
24432
24781
|
}
|
|
24433
|
-
.
|
|
24434
|
-
.
|
|
24435
|
-
.
|
|
24782
|
+
._inputWrapper_ibs3l_450 > span,
|
|
24783
|
+
._inputWrapper_ibs3l_450 > span > span,
|
|
24784
|
+
._inputWrapper_ibs3l_450 > span > span > div {
|
|
24436
24785
|
height: 100%;
|
|
24437
24786
|
border-radius: inherit;
|
|
24438
24787
|
}
|
|
24439
|
-
.
|
|
24440
|
-
.
|
|
24788
|
+
._inputWrapper_ibs3l_450 > div,
|
|
24789
|
+
._inputWrapper_ibs3l_450 > div > span {
|
|
24441
24790
|
height: 100%;
|
|
24442
24791
|
border-radius: inherit;
|
|
24443
24792
|
}
|
|
24444
|
-
.
|
|
24793
|
+
._breakWord_ibs3l_466 {
|
|
24445
24794
|
word-break: break-word;
|
|
24446
24795
|
}
|
|
24447
|
-
.
|
|
24796
|
+
._inputCell_ibs3l_469 {
|
|
24448
24797
|
padding: 0 !important;
|
|
24449
24798
|
}
|
|
24450
|
-
.
|
|
24799
|
+
._sliderCell_ibs3l_472 {
|
|
24451
24800
|
padding-top: 0 !important;
|
|
24452
24801
|
padding-bottom: 0 !important;
|
|
24453
24802
|
}
|
|
24454
|
-
.
|
|
24803
|
+
._staticCell_ibs3l_476 {
|
|
24455
24804
|
padding: 0 !important;
|
|
24456
24805
|
}
|
|
24457
|
-
.
|
|
24806
|
+
._staticCell_ibs3l_476 ._staticCellContent_ibs3l_479 {
|
|
24458
24807
|
min-height: 100%;
|
|
24459
24808
|
padding: 6.5px 12px;
|
|
24460
24809
|
line-height: 17px;
|
|
@@ -24463,106 +24812,107 @@ html[data-theme='dark'] {
|
|
|
24463
24812
|
display: flex;
|
|
24464
24813
|
align-items: center;
|
|
24465
24814
|
}
|
|
24466
|
-
tbody .
|
|
24815
|
+
tbody ._staticCell_ibs3l_476 ._staticCellContent_ibs3l_479 {
|
|
24467
24816
|
background-color: var(--color-background-disabled);
|
|
24468
24817
|
color: var(--color-text-muted);
|
|
24469
24818
|
}
|
|
24470
|
-
.
|
|
24471
|
-
.
|
|
24819
|
+
._staticCell_ibs3l_476 ._staticCellContent_ibs3l_479._error_ibs3l_492,
|
|
24820
|
+
._staticCell_ibs3l_476 ._staticCellContent_ibs3l_479._warning_ibs3l_493 {
|
|
24472
24821
|
border: 1px solid transparent;
|
|
24473
24822
|
}
|
|
24474
|
-
.
|
|
24823
|
+
._staticCell_ibs3l_476 ._staticCellContent_ibs3l_479._error_ibs3l_492 {
|
|
24475
24824
|
position: relative;
|
|
24476
24825
|
z-index: 2;
|
|
24477
24826
|
border-color: var(--color-border-error) !important;
|
|
24478
24827
|
color: var(--color-text-error) !important;
|
|
24479
24828
|
background-color: var(--color-background-error);
|
|
24480
24829
|
}
|
|
24481
|
-
.
|
|
24830
|
+
._staticCell_ibs3l_476 ._staticCellContent_ibs3l_479._error_ibs3l_492:hover {
|
|
24482
24831
|
border-color: var(--color-border-error-hover) !important;
|
|
24483
24832
|
}
|
|
24484
|
-
.
|
|
24833
|
+
._staticCell_ibs3l_476 ._staticCellContent_ibs3l_479._error_ibs3l_492:focus {
|
|
24485
24834
|
position: relative;
|
|
24486
24835
|
outline: none !important;
|
|
24487
24836
|
border-color: var(--color-border-focus) !important;
|
|
24488
24837
|
box-shadow: var(--shadow-focus);
|
|
24489
24838
|
z-index: 3;
|
|
24490
24839
|
}
|
|
24491
|
-
.
|
|
24840
|
+
._staticCell_ibs3l_476 ._staticCellContent_ibs3l_479._warning_ibs3l_493 {
|
|
24492
24841
|
position: relative;
|
|
24493
24842
|
z-index: 1;
|
|
24494
24843
|
border-color: var(--color-border-warning) !important;
|
|
24495
24844
|
color: var(--color-text-warning) !important;
|
|
24496
24845
|
background-color: var(--color-background-warning);
|
|
24497
24846
|
}
|
|
24498
|
-
.
|
|
24847
|
+
._staticCell_ibs3l_476 ._staticCellContent_ibs3l_479._warning_ibs3l_493:hover {
|
|
24499
24848
|
border-color: var(--color-border-warning-hover) !important;
|
|
24500
24849
|
}
|
|
24501
|
-
.
|
|
24850
|
+
._staticCell_ibs3l_476 ._staticCellContent_ibs3l_479._warning_ibs3l_493:focus {
|
|
24502
24851
|
position: relative;
|
|
24503
24852
|
outline: none !important;
|
|
24504
24853
|
border-color: var(--color-border-focus) !important;
|
|
24505
24854
|
box-shadow: var(--shadow-focus);
|
|
24506
24855
|
z-index: 3;
|
|
24507
24856
|
}
|
|
24508
|
-
.
|
|
24857
|
+
._staticCell_ibs3l_476 ._staticCellContent_ibs3l_479._unit_ibs3l_530 {
|
|
24509
24858
|
font-weight: normal;
|
|
24510
24859
|
}
|
|
24511
|
-
.
|
|
24860
|
+
._sortingCell_ibs3l_533 ._staticCellContent_ibs3l_479 {
|
|
24512
24861
|
position: relative;
|
|
24513
24862
|
padding-right: 45px !important;
|
|
24514
24863
|
cursor: pointer !important;
|
|
24515
24864
|
}
|
|
24516
|
-
.
|
|
24865
|
+
._sortingCell_ibs3l_533 ._staticCellContent_ibs3l_479:hover {
|
|
24517
24866
|
background-color: rgba(0, 0, 0, 0.05) !important;
|
|
24518
24867
|
}
|
|
24519
|
-
.
|
|
24868
|
+
._sortingCell_ibs3l_533 ._sortingCellIcon_ibs3l_541 {
|
|
24520
24869
|
font-size: 20px;
|
|
24521
24870
|
position: absolute;
|
|
24522
24871
|
right: 8px;
|
|
24523
24872
|
top: 50%;
|
|
24524
24873
|
transform: translateY(-50%);
|
|
24525
24874
|
}
|
|
24526
|
-
.
|
|
24875
|
+
._icon_ibs3l_548 {
|
|
24527
24876
|
display: inline-flex;
|
|
24528
24877
|
margin-left: 8px;
|
|
24529
24878
|
}
|
|
24530
|
-
.
|
|
24879
|
+
._checkBoxCell_ibs3l_552 {
|
|
24531
24880
|
padding-block: 0 !important;
|
|
24532
24881
|
width: var(--size);
|
|
24533
24882
|
}
|
|
24534
|
-
.
|
|
24883
|
+
._iconCell_ibs3l_556 {
|
|
24535
24884
|
width: var(--size);
|
|
24536
24885
|
text-align: center;
|
|
24537
24886
|
padding: 0 !important;
|
|
24538
24887
|
}
|
|
24539
|
-
.
|
|
24888
|
+
._iconCell_ibs3l_556 ._iconWrapper_ibs3l_561 {
|
|
24540
24889
|
display: flex;
|
|
24541
24890
|
justify-content: center;
|
|
24542
24891
|
}
|
|
24543
|
-
.
|
|
24892
|
+
._actionsCell_ibs3l_565 {
|
|
24544
24893
|
width: var(--size-sm);
|
|
24545
24894
|
padding: 0 calc((var(--size) - var(--size-sm)) / 2) !important;
|
|
24546
24895
|
position: sticky;
|
|
24547
24896
|
right: 0;
|
|
24548
24897
|
background: inherit;
|
|
24898
|
+
z-index: 4;
|
|
24549
24899
|
}
|
|
24550
|
-
.
|
|
24900
|
+
._rightAligned_ibs3l_573 {
|
|
24551
24901
|
text-align: right !important;
|
|
24552
24902
|
}
|
|
24553
|
-
.
|
|
24903
|
+
._rightAligned_ibs3l_573 ._staticCellContent_ibs3l_479 {
|
|
24554
24904
|
justify-content: flex-end;
|
|
24555
24905
|
}
|
|
24556
|
-
.
|
|
24906
|
+
._centerAligned_ibs3l_579 {
|
|
24557
24907
|
text-align: center !important;
|
|
24558
24908
|
}
|
|
24559
|
-
.
|
|
24909
|
+
._leftAligned_ibs3l_582 {
|
|
24560
24910
|
text-align: left !important;
|
|
24561
24911
|
}
|
|
24562
|
-
.
|
|
24912
|
+
._popover_ibs3l_585 {
|
|
24563
24913
|
padding: 6.5px 12px;
|
|
24564
24914
|
}
|
|
24565
|
-
.
|
|
24915
|
+
._disabledPointerEvents_ibs3l_588 {
|
|
24566
24916
|
pointer-events: none;
|
|
24567
24917
|
}
|
|
24568
24918
|
/*
|