3h1-ui 3.0.0-next.7 → 3.0.0-next.9
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/es/index.js +4839 -774
- package/es/style.css +433 -94
- package/lib/index.js +4834 -769
- package/lib/style.css +8531 -0
- package/package.json +1 -1
package/es/style.css
CHANGED
|
@@ -384,14 +384,14 @@ ul {
|
|
|
384
384
|
margin-left: 0.25rem;
|
|
385
385
|
margin-right: 0.25rem;
|
|
386
386
|
}
|
|
387
|
-
.mx-auto {
|
|
388
|
-
margin-left: auto;
|
|
389
|
-
margin-right: auto;
|
|
390
|
-
}
|
|
391
387
|
.mx-2 {
|
|
392
388
|
margin-left: 0.5rem;
|
|
393
389
|
margin-right: 0.5rem;
|
|
394
390
|
}
|
|
391
|
+
.mx-auto {
|
|
392
|
+
margin-left: auto;
|
|
393
|
+
margin-right: auto;
|
|
394
|
+
}
|
|
395
395
|
.mr-2 {
|
|
396
396
|
margin-right: 0.5rem;
|
|
397
397
|
}
|
|
@@ -1043,27 +1043,37 @@ span.iconify {
|
|
|
1043
1043
|
user-select: none;
|
|
1044
1044
|
display: inline-block;
|
|
1045
1045
|
}@media screen and (max-height: 600px) {
|
|
1046
|
-
.ant-modal {
|
|
1046
|
+
.shy-basic-modal .ant-modal {
|
|
1047
1047
|
top: 60px;
|
|
1048
1048
|
}
|
|
1049
1049
|
}
|
|
1050
1050
|
@media screen and (max-height: 540px) {
|
|
1051
|
-
.ant-modal {
|
|
1051
|
+
.shy-basic-modal .ant-modal {
|
|
1052
1052
|
top: 30px;
|
|
1053
1053
|
}
|
|
1054
1054
|
}
|
|
1055
1055
|
@media screen and (max-height: 480px) {
|
|
1056
|
-
.ant-modal {
|
|
1056
|
+
.shy-basic-modal .ant-modal {
|
|
1057
1057
|
top: 10px;
|
|
1058
1058
|
}
|
|
1059
1059
|
}
|
|
1060
|
-
.
|
|
1060
|
+
.shy-basic-modal :is(.ant-modal-header) {
|
|
1061
|
+
margin: 0;
|
|
1062
|
+
border-bottom: 1px solid #E4E7ED;
|
|
1063
|
+
}
|
|
1064
|
+
.shy-basic-modal :is(.ant-modal-footer) {
|
|
1065
|
+
padding: 10px;
|
|
1066
|
+
margin: 0;
|
|
1067
|
+
border-top: 1px solid #E4E7ED;
|
|
1068
|
+
}
|
|
1069
|
+
.shy-basic-modal.fullscreen-modal {
|
|
1070
|
+
height: 100%;
|
|
1061
1071
|
overflow: hidden;
|
|
1062
1072
|
}
|
|
1063
|
-
.fullscreen-modal .ant-modal-header {
|
|
1073
|
+
.shy-basic-modal.fullscreen-modal .ant-modal-header {
|
|
1064
1074
|
pointer-events: none;
|
|
1065
1075
|
}
|
|
1066
|
-
.fullscreen-modal .ant-modal {
|
|
1076
|
+
.shy-basic-modal.fullscreen-modal .ant-modal {
|
|
1067
1077
|
top: 0 !important;
|
|
1068
1078
|
right: 0 !important;
|
|
1069
1079
|
bottom: 0 !important;
|
|
@@ -1072,87 +1082,15 @@ span.iconify {
|
|
|
1072
1082
|
margin: 0;
|
|
1073
1083
|
width: 100% !important;
|
|
1074
1084
|
max-width: 100%;
|
|
1085
|
+
height: 100% !important;
|
|
1075
1086
|
}
|
|
1076
|
-
.fullscreen-modal .ant-modal-
|
|
1087
|
+
.shy-basic-modal.fullscreen-modal .ant-modal-body {
|
|
1088
|
+
flex: 1;
|
|
1089
|
+
}
|
|
1090
|
+
.shy-basic-modal.fullscreen-modal .ant-modal-content {
|
|
1077
1091
|
display: flex;
|
|
1078
1092
|
flex-direction: column;
|
|
1079
1093
|
height: 100%;
|
|
1080
|
-
}
|
|
1081
|
-
.ant-modal {
|
|
1082
|
-
padding-bottom: 0;
|
|
1083
|
-
width: 520px;
|
|
1084
|
-
}
|
|
1085
|
-
.ant-modal .ant-modal-body > .scrollbar {
|
|
1086
|
-
padding: 14px;
|
|
1087
|
-
}
|
|
1088
|
-
.ant-modal-content {
|
|
1089
|
-
padding: 0 !important;
|
|
1090
|
-
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
1091
|
-
}
|
|
1092
|
-
.ant-modal-close {
|
|
1093
|
-
top: unset !important;
|
|
1094
|
-
width: unset !important;
|
|
1095
|
-
height: unset !important;
|
|
1096
|
-
font-weight: normal;
|
|
1097
|
-
outline: none;
|
|
1098
|
-
}
|
|
1099
|
-
.ant-modal-close:hover, .ant-modal-close:active {
|
|
1100
|
-
background: unset !important;
|
|
1101
|
-
}
|
|
1102
|
-
.ant-modal-close-x .shy-basic-modal-close {
|
|
1103
|
-
justify-content: flex-end;
|
|
1104
|
-
height: 56px;
|
|
1105
|
-
line-height: 56px;
|
|
1106
|
-
}
|
|
1107
|
-
.ant-modal-title {
|
|
1108
|
-
font-size: 16px;
|
|
1109
|
-
font-weight: bold;
|
|
1110
|
-
}
|
|
1111
|
-
.ant-modal-title .base-title {
|
|
1112
|
-
cursor: move !important;
|
|
1113
|
-
}
|
|
1114
|
-
.ant-modal .ant-modal-body {
|
|
1115
|
-
padding: 0;
|
|
1116
|
-
}
|
|
1117
|
-
.ant-modal .ant-modal-body > .scrollbar > .scrollbar__bar.is-horizontal {
|
|
1118
|
-
display: none;
|
|
1119
|
-
}
|
|
1120
|
-
.ant-modal-large {
|
|
1121
|
-
top: 60px;
|
|
1122
|
-
}
|
|
1123
|
-
.ant-modal-large--mini {
|
|
1124
|
-
top: 16px;
|
|
1125
|
-
}
|
|
1126
|
-
.ant-modal-header {
|
|
1127
|
-
padding: 16px;
|
|
1128
|
-
}
|
|
1129
|
-
.ant-modal-footer {
|
|
1130
|
-
border-radius: unset !important;
|
|
1131
|
-
}
|
|
1132
|
-
.ant-modal-footer button + button {
|
|
1133
|
-
margin-left: 10px;
|
|
1134
|
-
}
|
|
1135
|
-
.ant-modal-close-x {
|
|
1136
|
-
display: inline-block;
|
|
1137
|
-
width: 96px !important;
|
|
1138
|
-
}
|
|
1139
|
-
.ant-modal-confirm-body .ant-modal-confirm-content > * {
|
|
1140
|
-
color: #909399;
|
|
1141
|
-
}
|
|
1142
|
-
.ant-modal-confirm-confirm.error .ant-modal-confirm-body > .anticon {
|
|
1143
|
-
color: #ED6F6F;
|
|
1144
|
-
}
|
|
1145
|
-
.ant-modal-confirm-btns .ant-btn:last-child {
|
|
1146
|
-
margin-right: 0;
|
|
1147
|
-
}
|
|
1148
|
-
.ant-modal-confirm-info .ant-modal-confirm-body > .anticon {
|
|
1149
|
-
color: #EFBD47;
|
|
1150
|
-
}
|
|
1151
|
-
.ant-modal-confirm-confirm.success .ant-modal-confirm-body > .anticon {
|
|
1152
|
-
color: #55D187;
|
|
1153
|
-
}
|
|
1154
|
-
.ant-modal-confirm .ant-modal-body {
|
|
1155
|
-
padding: 24px !important;
|
|
1156
1094
|
}.scroll-container {
|
|
1157
1095
|
width: 100%;
|
|
1158
1096
|
height: 100%;
|
|
@@ -1225,6 +1163,55 @@ span.iconify {
|
|
|
1225
1163
|
}
|
|
1226
1164
|
.shy-basic-title-help[data-v-a48f9d86] {
|
|
1227
1165
|
margin-left: 10px;
|
|
1166
|
+
}@media screen and (max-height: 600px) {
|
|
1167
|
+
.shy-basic-modal .ant-modal {
|
|
1168
|
+
top: 60px;
|
|
1169
|
+
}
|
|
1170
|
+
}
|
|
1171
|
+
@media screen and (max-height: 540px) {
|
|
1172
|
+
.shy-basic-modal .ant-modal {
|
|
1173
|
+
top: 30px;
|
|
1174
|
+
}
|
|
1175
|
+
}
|
|
1176
|
+
@media screen and (max-height: 480px) {
|
|
1177
|
+
.shy-basic-modal .ant-modal {
|
|
1178
|
+
top: 10px;
|
|
1179
|
+
}
|
|
1180
|
+
}
|
|
1181
|
+
.shy-basic-modal :is(.ant-modal-header) {
|
|
1182
|
+
margin: 0;
|
|
1183
|
+
border-bottom: 1px solid #E4E7ED;
|
|
1184
|
+
}
|
|
1185
|
+
.shy-basic-modal :is(.ant-modal-footer) {
|
|
1186
|
+
padding: 10px;
|
|
1187
|
+
margin: 0;
|
|
1188
|
+
border-top: 1px solid #E4E7ED;
|
|
1189
|
+
}
|
|
1190
|
+
.shy-basic-modal.fullscreen-modal {
|
|
1191
|
+
height: 100%;
|
|
1192
|
+
overflow: hidden;
|
|
1193
|
+
}
|
|
1194
|
+
.shy-basic-modal.fullscreen-modal .ant-modal-header {
|
|
1195
|
+
pointer-events: none;
|
|
1196
|
+
}
|
|
1197
|
+
.shy-basic-modal.fullscreen-modal .ant-modal {
|
|
1198
|
+
top: 0 !important;
|
|
1199
|
+
right: 0 !important;
|
|
1200
|
+
bottom: 0 !important;
|
|
1201
|
+
left: 0 !important;
|
|
1202
|
+
padding-bottom: 0;
|
|
1203
|
+
margin: 0;
|
|
1204
|
+
width: 100% !important;
|
|
1205
|
+
max-width: 100%;
|
|
1206
|
+
height: 100% !important;
|
|
1207
|
+
}
|
|
1208
|
+
.shy-basic-modal.fullscreen-modal .ant-modal-body {
|
|
1209
|
+
flex: 1;
|
|
1210
|
+
}
|
|
1211
|
+
.shy-basic-modal.fullscreen-modal .ant-modal-content {
|
|
1212
|
+
display: flex;
|
|
1213
|
+
flex-direction: column;
|
|
1214
|
+
height: 100%;
|
|
1228
1215
|
}.shy-basic-table-action {
|
|
1229
1216
|
display: flex;
|
|
1230
1217
|
align-items: center;
|
|
@@ -1318,6 +1305,9 @@ span.iconify {
|
|
|
1318
1305
|
display: flex;
|
|
1319
1306
|
justify-content: space-between;
|
|
1320
1307
|
}
|
|
1308
|
+
.shy-basic-form :is(.ant-input-number) {
|
|
1309
|
+
width: 100%;
|
|
1310
|
+
}
|
|
1321
1311
|
.shy-basic-form-action {
|
|
1322
1312
|
width: 250px !important;
|
|
1323
1313
|
}
|
|
@@ -1837,7 +1827,10 @@ span.iconify {
|
|
|
1837
1827
|
display: inline-grid;
|
|
1838
1828
|
}.app-iconify[data-v-21146269] {
|
|
1839
1829
|
vertical-align: middle;
|
|
1840
|
-
}
|
|
1830
|
+
}.shy-basic-table .ant-table-expanded-row-fixed {
|
|
1831
|
+
width: 100% !important;
|
|
1832
|
+
}
|
|
1833
|
+
[data-theme='dark'] .ant-table-tbody > tr:hover.ant-table-row-selected > td, [data-theme='dark'] .ant-table-tbody > tr.ant-table-row-selected td {
|
|
1841
1834
|
background-color: #262626;
|
|
1842
1835
|
}
|
|
1843
1836
|
.shy-basic-table {
|
|
@@ -1963,6 +1956,9 @@ span.iconify {
|
|
|
1963
1956
|
.shy-basic-table .hide-scrollbar-x .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-content .ant-table-fixed-left .ant-table-body-outer .ant-table-body-inner {
|
|
1964
1957
|
overflow-x: auto !important;
|
|
1965
1958
|
}
|
|
1959
|
+
.shy-basic-table .ant-table-tbody tr td:empty::after {
|
|
1960
|
+
content: '-' !important;
|
|
1961
|
+
}
|
|
1966
1962
|
.hide-scrollbar-y .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-content .ant-table-scroll .ant-table-hide-scrollbar {
|
|
1967
1963
|
overflow-y: auto !important;
|
|
1968
1964
|
}
|
|
@@ -1974,12 +1970,6 @@ span.iconify {
|
|
|
1974
1970
|
}
|
|
1975
1971
|
.hide-scrollbar-y .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-content .ant-table-fixed-left .ant-table-body-outer .ant-table-body-inner {
|
|
1976
1972
|
overflow-y: auto !important;
|
|
1977
|
-
}
|
|
1978
|
-
.ant-table-tbody tr td:empty::after {
|
|
1979
|
-
content: '-' !important;
|
|
1980
|
-
}
|
|
1981
|
-
.ant-table-expanded-row-fixed {
|
|
1982
|
-
width: 100% !important;
|
|
1983
1973
|
}.wrapper[data-v-24f758b3] {
|
|
1984
1974
|
display: flex;
|
|
1985
1975
|
}
|
|
@@ -8189,4 +8179,353 @@ html[data-theme='dark'] .full-loading[data-v-33b23b82]:not(.light) {
|
|
|
8189
8179
|
}
|
|
8190
8180
|
.vue-colorful__hue-pointer {
|
|
8191
8181
|
z-index: 2;
|
|
8182
|
+
}[data-theme='dark'] .ant-table-tbody > tr:hover.ant-table-row-selected > td, [data-theme='dark'] .ant-table-tbody > tr.ant-table-row-selected td {
|
|
8183
|
+
background-color: #262626;
|
|
8184
|
+
}
|
|
8185
|
+
.shy-table {
|
|
8186
|
+
overflow: hidden;
|
|
8187
|
+
width: 100%;
|
|
8188
|
+
height: 100%;
|
|
8189
|
+
}
|
|
8190
|
+
.shy-table-table-wrapper {
|
|
8191
|
+
padding: 10px 10px 0 10px;
|
|
8192
|
+
background: #fff;
|
|
8193
|
+
}
|
|
8194
|
+
.shy-table-row__striped td {
|
|
8195
|
+
background-color: #fafafa;
|
|
8196
|
+
}
|
|
8197
|
+
.shy-table-advanced-search {
|
|
8198
|
+
position: absolute;
|
|
8199
|
+
top: 40px;
|
|
8200
|
+
right: 106px;
|
|
8201
|
+
width: 600px;
|
|
8202
|
+
z-index: 100;
|
|
8203
|
+
background-color: #fff;
|
|
8204
|
+
border: 1px solid #ebebeb;
|
|
8205
|
+
padding: 10px 10px 42px 10px;
|
|
8206
|
+
}
|
|
8207
|
+
.shy-table-advanced-search .shy-ui-advanced-search {
|
|
8208
|
+
max-height: 500px;
|
|
8209
|
+
overflow: auto;
|
|
8210
|
+
}
|
|
8211
|
+
.shy-table-advanced-search-footer {
|
|
8212
|
+
position: absolute;
|
|
8213
|
+
left: 10px;
|
|
8214
|
+
bottom: 10px;
|
|
8215
|
+
}
|
|
8216
|
+
.shy-table-advanced-search-item {
|
|
8217
|
+
display: flex;
|
|
8218
|
+
align-items: center;
|
|
8219
|
+
justify-content: space-between;
|
|
8220
|
+
margin-bottom: 8px;
|
|
8221
|
+
}
|
|
8222
|
+
.shy-table-form-container .ant-form {
|
|
8223
|
+
position: relative;
|
|
8224
|
+
padding: 12px 10px 6px;
|
|
8225
|
+
width: 100%;
|
|
8226
|
+
background-color: #ffffff;
|
|
8227
|
+
border-radius: 12px;
|
|
8228
|
+
}
|
|
8229
|
+
.shy-table .ant-tag {
|
|
8230
|
+
margin-right: 0;
|
|
8231
|
+
}
|
|
8232
|
+
.shy-table .ant-table-thead .ant-table-selection-column::before {
|
|
8233
|
+
position: absolute;
|
|
8234
|
+
top: 50%;
|
|
8235
|
+
right: 0;
|
|
8236
|
+
width: 1px;
|
|
8237
|
+
height: 1.6em;
|
|
8238
|
+
background-color: rgba(0, 0, 0, 0.06);
|
|
8239
|
+
content: "";
|
|
8240
|
+
transform: translateY(-50%);
|
|
8241
|
+
transition: background-color 0.3s;
|
|
8242
|
+
}
|
|
8243
|
+
.shy-table .ant-table-wrapper {
|
|
8244
|
+
padding: 0 !important;
|
|
8245
|
+
background-color: #ffffff;
|
|
8246
|
+
border-radius: 12px;
|
|
8247
|
+
}
|
|
8248
|
+
.shy-table .ant-table-wrapper .ant-table-title {
|
|
8249
|
+
padding: 0 0 8px !important;
|
|
8250
|
+
min-height: 40px;
|
|
8251
|
+
}
|
|
8252
|
+
.shy-table .ant-table-wrapper .ant-table.ant-table-bordered .ant-table-title {
|
|
8253
|
+
border: none !important;
|
|
8254
|
+
}
|
|
8255
|
+
.shy-table .ant-table {
|
|
8256
|
+
overflow-x: hidden;
|
|
8257
|
+
width: 100%;
|
|
8258
|
+
}
|
|
8259
|
+
.shy-table .ant-table-title {
|
|
8260
|
+
display: flex;
|
|
8261
|
+
justify-content: space-between;
|
|
8262
|
+
align-items: center;
|
|
8263
|
+
padding: 8px 6px;
|
|
8264
|
+
border-bottom: none;
|
|
8265
|
+
}
|
|
8266
|
+
.shy-table .shy-basic-form-input > .ant-col {
|
|
8267
|
+
padding-left: 0 !important;
|
|
8268
|
+
padding-right: 20px !important;
|
|
8269
|
+
}
|
|
8270
|
+
.shy-table--inset .ant-table-wrapper {
|
|
8271
|
+
padding: 0;
|
|
8272
|
+
}
|
|
8273
|
+
.shy-table .ant-table-container {
|
|
8274
|
+
border: 1px solid #f0f0f0;
|
|
8275
|
+
}
|
|
8276
|
+
.shy-table .hide-scrollbar-x .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-content .ant-table-scroll .ant-table-hide-scrollbar {
|
|
8277
|
+
overflow-x: auto !important;
|
|
8278
|
+
}
|
|
8279
|
+
.shy-table .hide-scrollbar-x .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
|
|
8280
|
+
overflow: auto !important;
|
|
8281
|
+
}
|
|
8282
|
+
.shy-table .hide-scrollbar-x .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-content .ant-table-fixed-right .ant-table-body-outer .ant-table-body-inner {
|
|
8283
|
+
overflow-x: auto !important;
|
|
8284
|
+
}
|
|
8285
|
+
.shy-table .hide-scrollbar-x .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-content .ant-table-fixed-left .ant-table-body-outer .ant-table-body-inner {
|
|
8286
|
+
overflow-x: auto !important;
|
|
8287
|
+
}
|
|
8288
|
+
.hide-scrollbar-y .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-content .ant-table-scroll .ant-table-hide-scrollbar {
|
|
8289
|
+
overflow-y: auto !important;
|
|
8290
|
+
}
|
|
8291
|
+
.hide-scrollbar-y .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
|
|
8292
|
+
overflow-y: auto !important;
|
|
8293
|
+
}
|
|
8294
|
+
.hide-scrollbar-y .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-content .ant-table-fixed-right .ant-table-body-outer .ant-table-body-inner {
|
|
8295
|
+
overflow-y: auto !important;
|
|
8296
|
+
}
|
|
8297
|
+
.hide-scrollbar-y .ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-content .ant-table-fixed-left .ant-table-body-outer .ant-table-body-inner {
|
|
8298
|
+
overflow-y: auto !important;
|
|
8299
|
+
}
|
|
8300
|
+
.hide-scrollbar-y .ant-table-tbody tr td:empty::after {
|
|
8301
|
+
content: '-' !important;
|
|
8302
|
+
}.edit-cell-align-left {
|
|
8303
|
+
text-align: left;
|
|
8304
|
+
}
|
|
8305
|
+
.edit-cell-align-left input:not(.ant-calendar-picker-input, .ant-time-picker-input) {
|
|
8306
|
+
text-align: left;
|
|
8307
|
+
}
|
|
8308
|
+
.edit-cell-align-center {
|
|
8309
|
+
text-align: center;
|
|
8310
|
+
}
|
|
8311
|
+
.edit-cell-align-center input:not(.ant-calendar-picker-input, .ant-time-picker-input) {
|
|
8312
|
+
text-align: center;
|
|
8313
|
+
}
|
|
8314
|
+
.edit-cell-align-right {
|
|
8315
|
+
text-align: right;
|
|
8316
|
+
}
|
|
8317
|
+
.edit-cell-align-right input:not(.ant-calendar-picker-input, .ant-time-picker-input) {
|
|
8318
|
+
text-align: right;
|
|
8319
|
+
}
|
|
8320
|
+
.edit-cell-rule-popover .ant-popover-inner-content {
|
|
8321
|
+
padding: 4px 8px;
|
|
8322
|
+
color: #ED6F6F;
|
|
8323
|
+
border-radius: 2px;
|
|
8324
|
+
}
|
|
8325
|
+
.shy-editable-cell {
|
|
8326
|
+
position: relative;
|
|
8327
|
+
min-height: 24px;
|
|
8328
|
+
}
|
|
8329
|
+
.shy-editable-cell__wrapper {
|
|
8330
|
+
display: flex;
|
|
8331
|
+
justify-content: center;
|
|
8332
|
+
align-items: center;
|
|
8333
|
+
}
|
|
8334
|
+
.shy-editable-cell__wrapper > .ant-select {
|
|
8335
|
+
min-width: calc(100% - 50px);
|
|
8336
|
+
}
|
|
8337
|
+
.shy-editable-cell__icon:hover {
|
|
8338
|
+
transform: scale(1.2);
|
|
8339
|
+
}
|
|
8340
|
+
.shy-editable-cell__icon:hover svg {
|
|
8341
|
+
color: #006eff;
|
|
8342
|
+
}
|
|
8343
|
+
.shy-editable-cell__rule {
|
|
8344
|
+
border: 1px solid #ED6F6F !important;
|
|
8345
|
+
}
|
|
8346
|
+
.shy-editable-cell__rule::placeholder, .shy-editable-cell__rule ::placeholder {
|
|
8347
|
+
color: #ED6F6F !important;
|
|
8348
|
+
}
|
|
8349
|
+
.shy-editable-cell .ellipsis-cell .cell-content {
|
|
8350
|
+
overflow: hidden;
|
|
8351
|
+
text-overflow: ellipsis;
|
|
8352
|
+
white-space: nowrap;
|
|
8353
|
+
overflow-wrap: break-word;
|
|
8354
|
+
word-break: break-word;
|
|
8355
|
+
}
|
|
8356
|
+
.shy-editable-cell__normal-icon {
|
|
8357
|
+
position: absolute;
|
|
8358
|
+
top: 4px;
|
|
8359
|
+
right: 0;
|
|
8360
|
+
display: none;
|
|
8361
|
+
width: 20px;
|
|
8362
|
+
cursor: pointer;
|
|
8363
|
+
}
|
|
8364
|
+
.shy-editable-cell:hover .shy-editable-cell__normal-icon {
|
|
8365
|
+
display: inline-block;
|
|
8366
|
+
}.table-column-drag-icon {
|
|
8367
|
+
margin: 0 5px;
|
|
8368
|
+
cursor: move;
|
|
8369
|
+
}
|
|
8370
|
+
.shy-basic-column-setting__popover-title {
|
|
8371
|
+
position: relative;
|
|
8372
|
+
display: flex;
|
|
8373
|
+
justify-content: space-between;
|
|
8374
|
+
align-items: center;
|
|
8375
|
+
}
|
|
8376
|
+
.shy-basic-column-setting__check-item {
|
|
8377
|
+
display: flex;
|
|
8378
|
+
align-items: center;
|
|
8379
|
+
padding: 4px 16px 8px 0;
|
|
8380
|
+
min-width: 100%;
|
|
8381
|
+
}
|
|
8382
|
+
.shy-basic-column-setting__check-item .ant-checkbox-wrapper {
|
|
8383
|
+
width: 100%;
|
|
8384
|
+
}
|
|
8385
|
+
.shy-basic-column-setting__check-item .ant-checkbox-wrapper:hover {
|
|
8386
|
+
color: #006eff;
|
|
8387
|
+
}
|
|
8388
|
+
.shy-basic-column-setting__fixed-left, .shy-basic-column-setting__fixed-right {
|
|
8389
|
+
color: rgba(0, 0, 0, 0.45);
|
|
8390
|
+
cursor: pointer;
|
|
8391
|
+
}
|
|
8392
|
+
.shy-basic-column-setting__fixed-left.active, .shy-basic-column-setting__fixed-right.active, .shy-basic-column-setting__fixed-left:hover, .shy-basic-column-setting__fixed-right:hover {
|
|
8393
|
+
color: #006eff;
|
|
8394
|
+
}
|
|
8395
|
+
.shy-basic-column-setting__fixed-left.disabled, .shy-basic-column-setting__fixed-right.disabled {
|
|
8396
|
+
color: rgba(0, 0, 0, 0.25);
|
|
8397
|
+
cursor: not-allowed;
|
|
8398
|
+
}
|
|
8399
|
+
.shy-basic-column-setting__fixed-right {
|
|
8400
|
+
transform: rotate(180deg);
|
|
8401
|
+
}
|
|
8402
|
+
.shy-basic-column-setting__cloumn-list svg {
|
|
8403
|
+
width: 1em !important;
|
|
8404
|
+
height: 1em !important;
|
|
8405
|
+
}
|
|
8406
|
+
.shy-basic-column-setting__cloumn-list .ant-popover-inner-content {
|
|
8407
|
+
padding-right: 0;
|
|
8408
|
+
padding-left: 0;
|
|
8409
|
+
}
|
|
8410
|
+
.shy-basic-column-setting__cloumn-list .ant-checkbox-group {
|
|
8411
|
+
width: 100%;
|
|
8412
|
+
min-width: 260px;
|
|
8413
|
+
}
|
|
8414
|
+
.shy-basic-column-setting__cloumn-list .scrollbar {
|
|
8415
|
+
height: 220px;
|
|
8416
|
+
}.icon-selected[data-v-b89f4548] {
|
|
8417
|
+
color: #498bf8;
|
|
8418
|
+
}.table-settings {
|
|
8419
|
+
display: flex;
|
|
8420
|
+
align-items: center;
|
|
8421
|
+
}
|
|
8422
|
+
.table-settings > * {
|
|
8423
|
+
margin-right: 12px;
|
|
8424
|
+
}
|
|
8425
|
+
.table-settings svg {
|
|
8426
|
+
width: 1.3em;
|
|
8427
|
+
height: 1.3em;
|
|
8428
|
+
}.shy-basic-table-header__button {
|
|
8429
|
+
display: flex;
|
|
8430
|
+
justify-content: flex-start;
|
|
8431
|
+
align-items: center;
|
|
8432
|
+
}
|
|
8433
|
+
.shy-basic-table-header__button > * {
|
|
8434
|
+
margin-right: 0.5rem;
|
|
8435
|
+
}
|
|
8436
|
+
.shy-basic-table-header__toolbar {
|
|
8437
|
+
display: flex;
|
|
8438
|
+
justify-content: space-between;
|
|
8439
|
+
align-items: center;
|
|
8440
|
+
flex: 1;
|
|
8441
|
+
}
|
|
8442
|
+
.shy-basic-table-header__toolbar > * {
|
|
8443
|
+
margin-right: 8px;
|
|
8444
|
+
}.shy-basic-table-global-search[data-v-47e7f228] {
|
|
8445
|
+
position: absolute;
|
|
8446
|
+
top: 40px;
|
|
8447
|
+
right: 131px;
|
|
8448
|
+
width: 200px;
|
|
8449
|
+
max-height: 800px;
|
|
8450
|
+
overflow: auto;
|
|
8451
|
+
background-color: #fff;
|
|
8452
|
+
z-index: 1000;
|
|
8453
|
+
border: 1px solid #ebebeb;
|
|
8454
|
+
padding: 10px;
|
|
8455
|
+
}
|
|
8456
|
+
.shy-basic-table-global-search-item-global[data-v-47e7f228] {
|
|
8457
|
+
height: 32px;
|
|
8458
|
+
line-height: 32px;
|
|
8459
|
+
font-size: 14px;
|
|
8460
|
+
color: #131415;
|
|
8461
|
+
cursor: pointer;
|
|
8462
|
+
padding: 0 8px;
|
|
8463
|
+
display: flex;
|
|
8464
|
+
align-items: center;
|
|
8465
|
+
justify-content: space-between;
|
|
8466
|
+
}
|
|
8467
|
+
.shy-basic-table-global-search-item-special[data-v-47e7f228] {
|
|
8468
|
+
height: 32px;
|
|
8469
|
+
line-height: 32px;
|
|
8470
|
+
font-size: 14px;
|
|
8471
|
+
color: #131415;
|
|
8472
|
+
cursor: pointer;
|
|
8473
|
+
padding: 0 8px;
|
|
8474
|
+
display: flex;
|
|
8475
|
+
align-items: center;
|
|
8476
|
+
justify-content: space-between;
|
|
8477
|
+
}
|
|
8478
|
+
.shy-basic-table-global-search-checkbox-wrapper[data-v-47e7f228] {
|
|
8479
|
+
padding: 0 8px;
|
|
8480
|
+
}
|
|
8481
|
+
.shy-basic-table-global-search .selected-bg[data-v-47e7f228] {
|
|
8482
|
+
background-color: #ebf1ff;
|
|
8483
|
+
}.shy-basic-table-header-cell__help {
|
|
8484
|
+
margin-left: 8px;
|
|
8485
|
+
color: rgba(0, 0, 0, 0.65) !important;
|
|
8486
|
+
}.shy-table-footer {
|
|
8487
|
+
display: flex;
|
|
8488
|
+
width: 100%;
|
|
8489
|
+
height: 45px;
|
|
8490
|
+
align-items: center;
|
|
8491
|
+
}
|
|
8492
|
+
.shy-table-footer-settings {
|
|
8493
|
+
display: flex;
|
|
8494
|
+
flex: 1;
|
|
8495
|
+
font-size: 14px;
|
|
8496
|
+
}.shy-basic-table-action {
|
|
8497
|
+
display: flex;
|
|
8498
|
+
align-items: center;
|
|
8499
|
+
}
|
|
8500
|
+
.shy-basic-table-action .action-divider {
|
|
8501
|
+
display: table;
|
|
8502
|
+
}
|
|
8503
|
+
.shy-basic-table-action.left {
|
|
8504
|
+
justify-content: flex-start;
|
|
8505
|
+
}
|
|
8506
|
+
.shy-basic-table-action.center {
|
|
8507
|
+
justify-content: center;
|
|
8508
|
+
}
|
|
8509
|
+
.shy-basic-table-action.right {
|
|
8510
|
+
justify-content: flex-end;
|
|
8511
|
+
}
|
|
8512
|
+
.shy-basic-table-action button {
|
|
8513
|
+
display: flex;
|
|
8514
|
+
align-items: center;
|
|
8515
|
+
}
|
|
8516
|
+
.shy-basic-table-action button span {
|
|
8517
|
+
margin-left: 0 !important;
|
|
8518
|
+
}
|
|
8519
|
+
.shy-basic-table-action button.ant-btn-circle span {
|
|
8520
|
+
margin: auto !important;
|
|
8521
|
+
}
|
|
8522
|
+
.shy-basic-table-action .ant-divider, .shy-basic-table-action .ant-divider-vertical {
|
|
8523
|
+
margin: 0 2px;
|
|
8524
|
+
}
|
|
8525
|
+
.shy-basic-table-action .icon-more {
|
|
8526
|
+
transform: rotate(90deg);
|
|
8527
|
+
}
|
|
8528
|
+
.shy-basic-table-action .icon-more svg {
|
|
8529
|
+
font-size: 1.1em;
|
|
8530
|
+
font-weight: 700;
|
|
8192
8531
|
}
|