@mescius/spread-sheets 18.1.3 → 18.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gc.spread.sheets.all.min.js +2 -1061
- package/dist/gc.spread.sheets.d.ts +1015 -666
- package/package.json +1 -1
- package/styles/gc.spread.sheets.css +170 -29
- package/styles/gc.spread.sheets.excel2013darkGray.css +156 -29
- package/styles/gc.spread.sheets.excel2013lightGray.css +156 -29
- package/styles/gc.spread.sheets.excel2013white.css +154 -27
- package/styles/gc.spread.sheets.excel2016black.css +169 -38
- package/styles/gc.spread.sheets.excel2016colorful.css +156 -29
- package/styles/gc.spread.sheets.excel2016darkGray.css +156 -29
package/package.json
CHANGED
@@ -11,6 +11,7 @@
|
|
11
11
|
--sjs-theme-gray-bg: rgba(51,51,51,.1);
|
12
12
|
--sjs-theme-border-color: #DAE2ED;
|
13
13
|
--sjs-theme-error-color: #BE1F1F;
|
14
|
+
--sjs-theme-border-radius: 0;
|
14
15
|
}
|
15
16
|
|
16
17
|
.gc-ui-contextmenu-split-sub-menu .gc-ui-contextmenu-container {
|
@@ -1395,6 +1396,54 @@ div.gc-search-outer-div input::-ms-clear {
|
|
1395
1396
|
cursor: default;
|
1396
1397
|
}
|
1397
1398
|
|
1399
|
+
.gc-ui-search-contextmenu-container {
|
1400
|
+
box-shadow: rgba(0, 0, 0, 0.4) 1px 2px 5px;
|
1401
|
+
font-family: "Segoe UI", Calibri, Thonburi, Arial, Verdana, sans-serif, "Mongolian Baiti", "Microsoft Yi Baiti", "Javanese Text";
|
1402
|
+
font-size: 9pt;
|
1403
|
+
background: #fafafa url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAlCAIAAADeGh6mAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkI3Nzc3QzY0NjA4NDExRTdCNDQ1QUY5RDQwRjQ4RTM0IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkI3Nzc3QzY1NjA4NDExRTdCNDQ1QUY5RDQwRjQ4RTM0Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Qjc3NzdDNjI2MDg0MTFFN0I0NDVBRjlENDBGNDhFMzQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Qjc3NzdDNjM2MDg0MTFFN0I0NDVBRjlENDBGNDhFMzQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7XPpUhAAAAPElEQVR42uzMWQ0AIAwFwb5aoP4FknKkCjABCR87AkZ9LrtB8qo9MluE2wOkpKSkpKSkpKSkpN+kR4ABAPElCOlTuPnQAAAAAElFTkSuQmCC) repeat-y;
|
1404
|
+
border: 1px solid #868686;
|
1405
|
+
color: #00156E;
|
1406
|
+
cursor: default;
|
1407
|
+
min-width: 200px;
|
1408
|
+
padding: 5px 0;
|
1409
|
+
border-radius: var(--sjs-theme-border-radius);
|
1410
|
+
}
|
1411
|
+
|
1412
|
+
.gc-ui-search-contextmenu-items-container {
|
1413
|
+
border: none;
|
1414
|
+
box-shadow: none;
|
1415
|
+
scrollbar-width: thin;
|
1416
|
+
}
|
1417
|
+
|
1418
|
+
.gc-ui-none-icon-contextmenu-container .gc-ui-contextmenu-icon {
|
1419
|
+
margin-right: 0;
|
1420
|
+
}
|
1421
|
+
|
1422
|
+
.gc-ui-contextmenu-search-label {
|
1423
|
+
margin: 2px auto;
|
1424
|
+
width: 170px;
|
1425
|
+
display: block;
|
1426
|
+
box-sizing: border-box;
|
1427
|
+
font-size: 12px;
|
1428
|
+
}
|
1429
|
+
|
1430
|
+
.gc-ui-contextmenu-search-box {
|
1431
|
+
margin: 5px auto;
|
1432
|
+
width: 170px;
|
1433
|
+
height: 26px;
|
1434
|
+
display: block;
|
1435
|
+
padding: 1px 8px;
|
1436
|
+
box-sizing: border-box;
|
1437
|
+
border: 1px solid #868686;
|
1438
|
+
font-size: 12px;
|
1439
|
+
border-radius: var(--sjs-theme-border-radius);
|
1440
|
+
}
|
1441
|
+
|
1442
|
+
.gc-ui-contextmenu-search-box:focus {
|
1443
|
+
border: 1px solid #868686;
|
1444
|
+
outline: none;
|
1445
|
+
}
|
1446
|
+
|
1398
1447
|
.gc-ui-contextmenu-menuitem-all-sheets-select-sheets-background-color {
|
1399
1448
|
background: #dddddd;
|
1400
1449
|
}
|
@@ -1970,6 +2019,40 @@ input.gc-checkbox-cell-type-input[type=checkbox]:after {
|
|
1970
2019
|
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content {
|
1971
2020
|
padding: 7px 7px 0 7px;
|
1972
2021
|
}
|
2022
|
+
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content span {
|
2023
|
+
display: inline-block;
|
2024
|
+
font-size: 12px;
|
2025
|
+
}
|
2026
|
+
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-paste-special-dialog-transform-formula-label {
|
2027
|
+
width: 60px;
|
2028
|
+
}
|
2029
|
+
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-paste-special-dialog-transform-formula-suffix {
|
2030
|
+
width: 20px;
|
2031
|
+
}
|
2032
|
+
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-transform-formula-editor-input {
|
2033
|
+
width: 180px;
|
2034
|
+
font-size: 12px;
|
2035
|
+
padding: 1px 4px;
|
2036
|
+
border: 1px solid #000;
|
2037
|
+
}
|
2038
|
+
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-transform-formula-editor-input:focus-visible {
|
2039
|
+
border-width: 1px;
|
2040
|
+
outline: none;
|
2041
|
+
}
|
2042
|
+
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-transform-scope-select {
|
2043
|
+
font-size: 12px;
|
2044
|
+
}
|
2045
|
+
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-paste-special-dialog-transform-scope-label {
|
2046
|
+
width: 60px;
|
2047
|
+
}
|
2048
|
+
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-transform-formula-editor-host {
|
2049
|
+
display: inline-block;
|
2050
|
+
}
|
2051
|
+
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content #gc-sjs-transform-formula-container.disable,
|
2052
|
+
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content #gc-sjs-transform-scope-container.disable {
|
2053
|
+
opacity: 0.3;
|
2054
|
+
pointer-events: none;
|
2055
|
+
}
|
1973
2056
|
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-footer {
|
1974
2057
|
padding: 7px;
|
1975
2058
|
justify-content: space-between;
|
@@ -1983,6 +2066,11 @@ input.gc-checkbox-cell-type-input[type=checkbox]:after {
|
|
1983
2066
|
margin-left: 10px;
|
1984
2067
|
}
|
1985
2068
|
|
2069
|
+
.gc-validation-select option:hover {
|
2070
|
+
background-color: #1967d2;
|
2071
|
+
color: #fff;
|
2072
|
+
}
|
2073
|
+
|
1986
2074
|
/* status bar end */
|
1987
2075
|
div[gcUIElement=gcSpread] .gc-month-picker-container {
|
1988
2076
|
font-size: 12px;
|
@@ -3254,12 +3342,19 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
3254
3342
|
.gc-panel-views > div > input {
|
3255
3343
|
color: black;
|
3256
3344
|
}
|
3345
|
+
.gc-panel-views .gc-panel-views-content {
|
3346
|
+
width: calc(100% - 50px);
|
3347
|
+
display: inline-block;
|
3348
|
+
border: 1px solid white;
|
3349
|
+
white-space: nowrap;
|
3350
|
+
}
|
3257
3351
|
|
3258
3352
|
.gc-panel-viewList {
|
3259
3353
|
position: absolute;
|
3260
3354
|
bottom: 10px;
|
3261
|
-
background-color: #
|
3262
|
-
|
3355
|
+
background-color: #FDFDFD;
|
3356
|
+
color: black;
|
3357
|
+
border: 1px solid white;
|
3263
3358
|
border-radius: 5px;
|
3264
3359
|
font-size: 14px;
|
3265
3360
|
min-height: 21px;
|
@@ -6777,12 +6872,12 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
6777
6872
|
|
6778
6873
|
.gc-table-sheet-panel, .gc-table-sheet-cross-column {
|
6779
6874
|
position: relative;
|
6780
|
-
background-color:
|
6875
|
+
background-color: var(--sjs-theme-background);
|
6781
6876
|
box-sizing: border-box;
|
6782
6877
|
width: 100%;
|
6783
6878
|
min-width: 300px;
|
6784
6879
|
height: 100%;
|
6785
|
-
font-family: -
|
6880
|
+
font-family: var(--sjs-theme-font-family);
|
6786
6881
|
font-size: 12px;
|
6787
6882
|
overflow-x: hidden;
|
6788
6883
|
overflow-y: hidden;
|
@@ -6794,7 +6889,10 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
6794
6889
|
margin: 5px 10px 0 10px;
|
6795
6890
|
width: calc(100% - 20px);
|
6796
6891
|
height: calc(100% - 30px);
|
6797
|
-
border: solid 1px
|
6892
|
+
border: solid 1px var(--sjs-theme-border-color);
|
6893
|
+
}
|
6894
|
+
.gc-table-sheet-panel .gc-table-sheet-field-panel .gcsj-func-ac-popup, .gc-table-sheet-panel .gc-table-sheet-cross-column-field .gcsj-func-ac-popup, .gc-table-sheet-cross-column .gc-table-sheet-field-panel .gcsj-func-ac-popup, .gc-table-sheet-cross-column .gc-table-sheet-cross-column-field .gcsj-func-ac-popup {
|
6895
|
+
width: 80%;
|
6798
6896
|
}
|
6799
6897
|
.gc-table-sheet-panel .gc-table-sheet-field-panel .gcsj-func-help-popup, .gc-table-sheet-panel .gc-table-sheet-cross-column-field .gcsj-func-help-popup, .gc-table-sheet-cross-column .gc-table-sheet-field-panel .gcsj-func-help-popup, .gc-table-sheet-cross-column .gc-table-sheet-cross-column-field .gcsj-func-help-popup {
|
6800
6898
|
white-space: normal;
|
@@ -6815,8 +6913,8 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
6815
6913
|
width: calc(100% - 20px);
|
6816
6914
|
overflow-y: auto;
|
6817
6915
|
overflow-x: hidden;
|
6818
|
-
background-color:
|
6819
|
-
border: solid 1px
|
6916
|
+
background-color: var(--sjs-theme-background);
|
6917
|
+
border: solid 1px var(--sjs-theme-border-color);
|
6820
6918
|
}
|
6821
6919
|
.gc-table-sheet-panel .gc-table-sheet-cross-column-list-container, .gc-table-sheet-cross-column .gc-table-sheet-cross-column-list-container {
|
6822
6920
|
height: 20%;
|
@@ -6834,12 +6932,14 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
6834
6932
|
height: 30%;
|
6835
6933
|
overflow-y: auto;
|
6836
6934
|
overflow-x: hidden;
|
6837
|
-
background-color:
|
6935
|
+
background-color: var(--sjs-theme-background);
|
6838
6936
|
}
|
6839
6937
|
.gc-table-sheet-group-panel.half-height, .gc-table-sheet-cross-column-list-container.half-height, .gc-table-sheet-cross-column-detail.half-height {
|
6840
6938
|
height: 50% !important;
|
6841
6939
|
}
|
6842
6940
|
.gc-table-sheet-group-panel .gc-table-sheet-group-input, .gc-table-sheet-cross-column-list-container .gc-table-sheet-group-input, .gc-table-sheet-cross-column-detail .gc-table-sheet-group-input {
|
6941
|
+
background: var(--sjs-theme-background);
|
6942
|
+
color: var(--sjs-theme-color);
|
6843
6943
|
position: absolute;
|
6844
6944
|
left: 1px;
|
6845
6945
|
width: calc(100% - 8px);
|
@@ -6854,6 +6954,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
6854
6954
|
|
6855
6955
|
.gc-table-sheet-group-header, .gc-table-sheet-cross-column-header {
|
6856
6956
|
box-sizing: border-box;
|
6957
|
+
color: var(--sjs-theme-color);
|
6857
6958
|
outline: none;
|
6858
6959
|
width: 100%;
|
6859
6960
|
height: 20px;
|
@@ -6867,7 +6968,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
6867
6968
|
width: calc(100% - 20px);
|
6868
6969
|
height: calc(100% - 40px);
|
6869
6970
|
margin: 6px 0 0 9px;
|
6870
|
-
border: dashed
|
6971
|
+
border: dashed var(--sjs-theme-border-color) 1px;
|
6871
6972
|
overflow-y: auto;
|
6872
6973
|
overflow-x: hidden;
|
6873
6974
|
padding-inline-start: 0px;
|
@@ -6877,7 +6978,8 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
6877
6978
|
height: 23px;
|
6878
6979
|
line-height: 23px;
|
6879
6980
|
margin: 2px;
|
6880
|
-
background-color:
|
6981
|
+
background-color: var(--sjs-theme-background);
|
6982
|
+
color: var(--sjs-theme-color);
|
6881
6983
|
box-sizing: border-box;
|
6882
6984
|
text-overflow: ellipsis;
|
6883
6985
|
overflow: hidden;
|
@@ -6885,7 +6987,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
6885
6987
|
white-space: nowrap;
|
6886
6988
|
margin-bottom: 1px;
|
6887
6989
|
font-size: 12px;
|
6888
|
-
border: 1px solid
|
6990
|
+
border: 1px solid var(--sjs-theme-border-color);
|
6889
6991
|
outline: none;
|
6890
6992
|
}
|
6891
6993
|
.gc-table-sheet-group-list .gc-table-sheet-cross-column-item-input, .gc-table-sheet-cross-column-list .gc-table-sheet-cross-column-item-input, .gc-table-sheet-cross-column-attributes-list .gc-table-sheet-cross-column-item-input {
|
@@ -6905,19 +7007,19 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
6905
7007
|
}
|
6906
7008
|
.gc-table-sheet-group-list .gc-table-sheet-group-item:hover, .gc-table-sheet-group-list .gc-table-sheet-cross-column-item:hover, .gc-table-sheet-cross-column-list .gc-table-sheet-group-item:hover, .gc-table-sheet-cross-column-list .gc-table-sheet-cross-column-item:hover, .gc-table-sheet-cross-column-attributes-list .gc-table-sheet-group-item:hover, .gc-table-sheet-cross-column-attributes-list .gc-table-sheet-cross-column-item:hover {
|
6907
7009
|
cursor: pointer;
|
6908
|
-
border: solid 1px
|
7010
|
+
border: solid 1px var(--sjs-theme-accent);
|
6909
7011
|
}
|
6910
7012
|
.gc-table-sheet-group-list .gc-table-sheet-group-item-reorder-top, .gc-table-sheet-group-list .gc-table-sheet-cross-column-item-reorder-top, .gc-table-sheet-cross-column-list .gc-table-sheet-group-item-reorder-top, .gc-table-sheet-cross-column-list .gc-table-sheet-cross-column-item-reorder-top, .gc-table-sheet-cross-column-attributes-list .gc-table-sheet-group-item-reorder-top, .gc-table-sheet-cross-column-attributes-list .gc-table-sheet-cross-column-item-reorder-top {
|
6911
|
-
border: 1px solid
|
6912
|
-
border-top: solid 1px
|
7013
|
+
border: 1px solid var(--sjs-theme-border-color) !important;
|
7014
|
+
border-top: solid 1px var(--sjs-theme-accent) !important;
|
6913
7015
|
}
|
6914
7016
|
.gc-table-sheet-group-list .gc-table-sheet-group-item-reorder-bottom, .gc-table-sheet-group-list .gc-table-sheet-cross-column-item-reorder-bottom, .gc-table-sheet-cross-column-list .gc-table-sheet-group-item-reorder-bottom, .gc-table-sheet-cross-column-list .gc-table-sheet-cross-column-item-reorder-bottom, .gc-table-sheet-cross-column-attributes-list .gc-table-sheet-group-item-reorder-bottom, .gc-table-sheet-cross-column-attributes-list .gc-table-sheet-cross-column-item-reorder-bottom {
|
6915
|
-
border: 1px solid
|
6916
|
-
border-bottom: solid 1px
|
7017
|
+
border: 1px solid var(--sjs-theme-border-color) !important;
|
7018
|
+
border-bottom: solid 1px var(--sjs-theme-accent) !important;
|
6917
7019
|
}
|
6918
7020
|
.gc-table-sheet-group-list .selected, .gc-table-sheet-cross-column-list .selected, .gc-table-sheet-cross-column-attributes-list .selected {
|
6919
|
-
background-color:
|
6920
|
-
color:
|
7021
|
+
background-color: var(--sjs-theme-accent) !important;
|
7022
|
+
color: var(--sjs-theme-accent-color) !important;
|
6921
7023
|
}
|
6922
7024
|
.gc-table-sheet-group-list .selected .gc-table-sheet-group-item-remove, .gc-table-sheet-cross-column-list .selected .gc-table-sheet-group-item-remove, .gc-table-sheet-cross-column-attributes-list .selected .gc-table-sheet-group-item-remove {
|
6923
7025
|
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzE5XzE2MjApIj4KPHJlY3Qgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiBmaWxsPSJ0cmFuc3BhcmVudCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTUuODk1MDggMS4yODYyMUM2LjA3MzgyIDEuMTAwNjIgNi4zMTIxNiAxIDYuNTU2NTEgMUg5LjQ0NTk1QzkuNjkwMzEgMSA5LjkyODY0IDEuMTAwNjIgMTAuMTA3NCAxLjI4NjIxQzEwLjI4NjcgMS40NzI0NCAxMC4zOTA3IDEuNzI4OTEgMTAuMzkwNyAyLjAwMDA5VjMuMDAwMThINS42MTE3OVYyLjAwMDA5QzUuNjExNzkgMS43Mjg5MSA1LjcxNTcyIDEuNDcyNDQgNS44OTUwOCAxLjI4NjIxWk00LjYxMTc5IDMuMDAwMThWMi4wMDAwOUM0LjYxMTc5IDEuNDc1NTggNC44MTIyOSAwLjk2ODkzMiA1LjE3NDggMC41OTI1MjNDNS41Mzc5NCAwLjIxNTQ3NCA2LjAzNDU0IDAgNi41NTY1MSAwSDkuNDQ1OTVDOS45Njc5MiAwIDEwLjQ2NDUgMC4yMTU0NzQgMTAuODI3NyAwLjU5MjUyM0MxMS4xOTAyIDAuOTY4OTMyIDExLjM5MDcgMS40NzU1OCAxMS4zOTA3IDIuMDAwMDlWMy4wMDAxOEgxMy4wNTc3SDE0LjUwMjVDMTQuNzc4NiAzLjAwMDE4IDE1LjAwMjUgMy4yMjQwNCAxNS4wMDI1IDMuNTAwMThDMTUuMDAyNSAzLjc3NjMzIDE0Ljc3ODYgNC4wMDAxOCAxNC41MDI1IDQuMDAwMThIMTMuNTU3N1YxNC4wMDA4QzEzLjU1NzcgMTQuNTI1MyAxMy4zNTcyIDE1LjAzMiAxMi45OTQ3IDE1LjQwODRDMTIuNjMxNiAxNS43ODU0IDEyLjEzNSAxNi4wMDA5IDExLjYxMyAxNi4wMDA5SDQuMzg5NDRDMy44Njc0NyAxNi4wMDA5IDMuMzcwODYgMTUuNzg1NCAzLjAwNzczIDE1LjQwODRDMi42NDUyMSAxNS4wMzIgMi40NDQ3MiAxNC41MjUzIDIuNDQ0NzIgMTQuMDAwOFY0LjAwMDE4SDEuNUMxLjIyMzg2IDQuMDAwMTggMSAzLjc3NjMzIDEgMy41MDAxOEMxIDMuMjI0MDQgMS4yMjM4NiAzLjAwMDE4IDEuNSAzLjAwMDE4SDIuOTQ0NzJINC42MTE3OVpNMy40NDQ3MiA0LjAwMDE4VjE0LjAwMDhDMy40NDQ3MiAxNC4yNzIgMy41NDg2NCAxNC41Mjg1IDMuNzI4IDE0LjcxNDdDMy45MDY3NSAxNC45MDAzIDQuMTQ1MDggMTUuMDAwOSA0LjM4OTQ0IDE1LjAwMDlIMTEuNjEzQzExLjg1NzQgMTUuMDAwOSAxMi4wOTU3IDE0LjkwMDMgMTIuMjc0NSAxNC43MTQ3QzEyLjQ1MzggMTQuNTI4NSAxMi41NTc3IDE0LjI3MiAxMi41NTc3IDE0LjAwMDhWNC4wMDAxOEgzLjQ0NDcyWk02LjUgN0M2Ljc3NjE0IDcgNyA3LjIwMzUgNyA3LjQ1NDUyVjExLjU0NTVDNyAxMS43OTY1IDYuNzc2MTQgMTIgNi41IDEyQzYuMjIzODYgMTIgNiAxMS43OTY1IDYgMTEuNTQ1NVY3LjQ1NDUyQzYgNy4yMDM1IDYuMjIzODYgNyA2LjUgN1pNMTAgNy40NTQ1MkMxMCA3LjIwMzUgOS43NzYxNCA3IDkuNSA3QzkuMjIzODYgNyA5IDcuMjAzNSA5IDcuNDU0NTJWMTEuNTQ1NUM5IDExLjc5NjUgOS4yMjM4NiAxMiA5LjUgMTJDOS43NzYxNCAxMiAxMCAxMS43OTY1IDEwIDExLjU0NTVWNy40NTQ1MloiIGZpbGw9IndoaXRlIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMTlfMTYyMCI+CjxyZWN0IHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0idHJhbnNwYXJlbnQiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
|
@@ -6928,6 +7030,9 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
6928
7030
|
.gc-table-sheet-group-list .selected .gc-table-sheet-cross-column-item-edit, .gc-table-sheet-cross-column-list .selected .gc-table-sheet-cross-column-item-edit, .gc-table-sheet-cross-column-attributes-list .selected .gc-table-sheet-cross-column-item-edit {
|
6929
7031
|
background-image: url(data:image/svg+xml;base64,PHN2ZyB0PSIxNjQ5ODQzMjA5MjY3IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9Ijg0NzMiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZD0iTTcyNi42NTI4MDEgNDI5LjMwNTYwMyAyOTcuMzQ3MTk5IDQyOS4zMDU2MDMgNTEyLjE5MzQwNSA2MzguMTU2MjU4WiIgcC1pZD0iODQ3NCIgZmlsbD0iI2ZmZmZmZiI+PC9wYXRoPjwvc3ZnPg==);
|
6930
7032
|
}
|
7033
|
+
.gc-table-sheet-group-list .selected .gc-table-sheet-summary-item-label, .gc-table-sheet-cross-column-list .selected .gc-table-sheet-summary-item-label, .gc-table-sheet-cross-column-attributes-list .selected .gc-table-sheet-summary-item-label {
|
7034
|
+
color: var(--sjs-theme-accent-color);
|
7035
|
+
}
|
6931
7036
|
.gc-table-sheet-group-list .gc-table-sheet-group-item-label, .gc-table-sheet-group-list .gc-table-sheet-cross-column-item-label, .gc-table-sheet-cross-column-list .gc-table-sheet-group-item-label, .gc-table-sheet-cross-column-list .gc-table-sheet-cross-column-item-label, .gc-table-sheet-cross-column-attributes-list .gc-table-sheet-group-item-label, .gc-table-sheet-cross-column-attributes-list .gc-table-sheet-cross-column-item-label {
|
6932
7037
|
margin-left: 5px;
|
6933
7038
|
width: 80%;
|
@@ -6972,10 +7077,10 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
6972
7077
|
height: initial;
|
6973
7078
|
}
|
6974
7079
|
.gc-table-sheet-group-list .gc-table-sheet-cross-column-item-editing .gc-table-sheet-cross-column-item-edit, .gc-table-sheet-cross-column-list .gc-table-sheet-cross-column-item-editing .gc-table-sheet-cross-column-item-edit, .gc-table-sheet-cross-column-attributes-list .gc-table-sheet-cross-column-item-editing .gc-table-sheet-cross-column-item-edit {
|
6975
|
-
background-image: url(data:image/svg+xml;base64,
|
7080
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB0PSIxNjQ5ODQzMjA5MjY3IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9Ijg0NzMiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZD0iTTcyNi42NTI4MDEgNDI5LjMwNTYwMyAyOTcuMzQ3MTk5IDQyOS4zMDU2MDMgNTEyLjE5MzQwNSA2MzguMTU2MjU4WiIgcC1pZD0iODQ3NCIgZmlsbD0iIzY2NjY2NiI+PC9wYXRoPjwvc3ZnPg==);
|
6976
7081
|
}
|
6977
7082
|
.gc-table-sheet-group-list .gc-table-sheet-cross-column-item-editing.selected .gc-table-sheet-cross-column-item-edit, .gc-table-sheet-cross-column-list .gc-table-sheet-cross-column-item-editing.selected .gc-table-sheet-cross-column-item-edit, .gc-table-sheet-cross-column-attributes-list .gc-table-sheet-cross-column-item-editing.selected .gc-table-sheet-cross-column-item-edit {
|
6978
|
-
background-image: url(data:image/svg+xml;base64,
|
7083
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB0PSIxNjQ5ODQzMjA5MjY3IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9Ijg0NzMiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZD0iTTcyNi42NTI4MDEgNDI5LjMwNTYwMyAyOTcuMzQ3MTk5IDQyOS4zMDU2MDMgNTEyLjE5MzQwNSA2MzguMTU2MjU4WiIgcC1pZD0iODQ3NCIgZmlsbD0iI2ZmZmZmZiI+PC9wYXRoPjwvc3ZnPg==);
|
6979
7084
|
}
|
6980
7085
|
.gc-table-sheet-group-list .gc-table-sheet-cross-column-attributes-formatter, .gc-table-sheet-cross-column-list .gc-table-sheet-cross-column-attributes-formatter, .gc-table-sheet-cross-column-attributes-list .gc-table-sheet-cross-column-attributes-formatter {
|
6981
7086
|
float: left;
|
@@ -6988,11 +7093,12 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
6988
7093
|
top: 50%;
|
6989
7094
|
transform: translate(-50%, -50%);
|
6990
7095
|
opacity: 0.75;
|
6991
|
-
color:
|
7096
|
+
color: var(--sjs-theme-color);
|
6992
7097
|
}
|
6993
7098
|
|
6994
7099
|
.gc-table-sheet-field-header {
|
6995
7100
|
display: block;
|
7101
|
+
color: var(--sjs-theme-color);
|
6996
7102
|
box-sizing: border-box;
|
6997
7103
|
outline: none;
|
6998
7104
|
width: 100%;
|
@@ -7038,7 +7144,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
7038
7144
|
height: calc(30% - 10px);
|
7039
7145
|
overflow-y: hidden;
|
7040
7146
|
overflow-x: hidden;
|
7041
|
-
background-color:
|
7147
|
+
background-color: var(--sjs-theme-background);
|
7042
7148
|
border: solid 1px lightgrey;
|
7043
7149
|
}
|
7044
7150
|
.gc-table-sheet-summary-container.half-height, .gc-table-sheet-cross-column-detail.half-height {
|
@@ -7046,10 +7152,11 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
7046
7152
|
}
|
7047
7153
|
|
7048
7154
|
.gc-table-sheet-summary-header {
|
7049
|
-
background-color: #
|
7155
|
+
background-color: #D7E6F7;
|
7050
7156
|
font-weight: 500;
|
7051
7157
|
}
|
7052
7158
|
.gc-table-sheet-summary-header .gc-table-sheet-summary-label {
|
7159
|
+
color: #333;
|
7053
7160
|
width: 80%;
|
7054
7161
|
height: 20px;
|
7055
7162
|
line-height: 20px;
|
@@ -7095,7 +7202,9 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
7095
7202
|
width: 60%;
|
7096
7203
|
height: 16px;
|
7097
7204
|
display: inline-block;
|
7098
|
-
border: solid 1px
|
7205
|
+
border: solid 1px var(--sjs-theme-border-color);
|
7206
|
+
color: var(--sjs-theme-color);
|
7207
|
+
background-color: var(--sjs-theme-background);
|
7099
7208
|
outline-color: rgb(82, 146, 247);
|
7100
7209
|
}
|
7101
7210
|
|
@@ -7117,6 +7226,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
7117
7226
|
line-height: 23px;
|
7118
7227
|
margin: 2px;
|
7119
7228
|
background-color: #f2f2ff;
|
7229
|
+
color: var(--sjs-theme-color);
|
7120
7230
|
box-sizing: border-box;
|
7121
7231
|
text-overflow: ellipsis;
|
7122
7232
|
overflow: hidden;
|
@@ -7124,7 +7234,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
7124
7234
|
white-space: nowrap;
|
7125
7235
|
margin-bottom: 1px;
|
7126
7236
|
font-size: 12px;
|
7127
|
-
border: 1px solid
|
7237
|
+
border: 1px solid var(--sjs-theme-border-color);
|
7128
7238
|
outline: none;
|
7129
7239
|
}
|
7130
7240
|
.gc-table-sheet-cross-column-attributes-list-container .gc-table-sheet-cross-column-attributes-list .gc-table-sheet-cross-column-static-list-item .gc-table-sheet-cross-column-item-label {
|
@@ -7157,6 +7267,8 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
7157
7267
|
}
|
7158
7268
|
|
7159
7269
|
.gc-table-sheet-cross-item-input-name {
|
7270
|
+
background-color: var(--sjs-theme-background);
|
7271
|
+
color: var(--sjs-theme-color);
|
7160
7272
|
width: calc(60% - 20px);
|
7161
7273
|
height: 16px;
|
7162
7274
|
display: inline-block;
|
@@ -7176,6 +7288,8 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
7176
7288
|
position: relative;
|
7177
7289
|
z-index: 1;
|
7178
7290
|
outline: none;
|
7291
|
+
background-color: var(--sjs-theme-background);
|
7292
|
+
color: var(--sjs-theme-color);
|
7179
7293
|
}
|
7180
7294
|
|
7181
7295
|
.gc-table-sheet-cross-column-value-caption {
|
@@ -7209,13 +7323,21 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
7209
7323
|
|
7210
7324
|
.gc-table-sheet-summary-item-select {
|
7211
7325
|
width: 60%;
|
7212
|
-
|
7326
|
+
color: var(--sjs-theme-color);
|
7327
|
+
background-color: var(--sjs-theme-background);
|
7213
7328
|
border: solid 1px #d3d3d3;
|
7214
7329
|
box-sizing: content-box;
|
7215
7330
|
padding: 1px 2px;
|
7331
|
+
appearance: none;
|
7332
|
+
outline: none;
|
7333
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3E%3Cpath fill=%27%23666%27 fill-rule=%27evenodd%27 d=%27M3 5h10l-5 5z%27/%3E%3C/svg%3E");
|
7334
|
+
background-position: right center;
|
7335
|
+
background-repeat: no-repeat;
|
7336
|
+
cursor: pointer;
|
7216
7337
|
}
|
7217
7338
|
|
7218
7339
|
.gc-table-sheet-summary-item-label {
|
7340
|
+
color: var(--sjs-theme-color);
|
7219
7341
|
width: 25%;
|
7220
7342
|
display: inline-block;
|
7221
7343
|
margin-left: 5px;
|
@@ -7227,10 +7349,15 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
7227
7349
|
display: inline-block;
|
7228
7350
|
border: solid 1px lightgrey;
|
7229
7351
|
outline-color: rgb(82, 146, 247);
|
7352
|
+
background-color: var(--sjs-theme-background);
|
7353
|
+
color: var(--sjs-theme-color);
|
7230
7354
|
}
|
7231
7355
|
|
7232
7356
|
.gc-table-sheet-summary-item-input-caption, .gc-table-sheet-summary-item-input-slice {
|
7233
7357
|
width: 60%;
|
7358
|
+
border: solid 1px var(--sjs-theme-border-color);
|
7359
|
+
color: var(--sjs-theme-color);
|
7360
|
+
background-color: var(--sjs-theme-background);
|
7234
7361
|
}
|
7235
7362
|
|
7236
7363
|
.gc-table-sheet-summary-item-remove-icon {
|
@@ -7250,12 +7377,12 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
7250
7377
|
line-height: 23px;
|
7251
7378
|
height: 18px;
|
7252
7379
|
position: absolute;
|
7253
|
-
background-color:
|
7254
|
-
border: 1px solid
|
7380
|
+
background-color: var(--sjs-theme-background);
|
7381
|
+
border: 1px solid var(--sjs-theme-border-color);
|
7255
7382
|
box-shadow: rgba(0, 0, 0, 0.4) 1px 2px 5px;
|
7256
7383
|
min-width: 200px;
|
7257
7384
|
font-size: 13px;
|
7258
|
-
color:
|
7385
|
+
color: var(--sjs-theme-color);
|
7259
7386
|
letter-spacing: 0.2px;
|
7260
7387
|
z-index: 3;
|
7261
7388
|
}
|
@@ -7574,3 +7701,17 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
7574
7701
|
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
|
7575
7702
|
border-radius: 3px !important;
|
7576
7703
|
}
|
7704
|
+
|
7705
|
+
.gc-ui-none-icon-contextmenu-container .gc-ui-contextmenu-icon {
|
7706
|
+
margin-right: 12px;
|
7707
|
+
}
|
7708
|
+
|
7709
|
+
.gc-ui-contextmenu-search-label {
|
7710
|
+
margin-left: 30px;
|
7711
|
+
width: 166px;
|
7712
|
+
}
|
7713
|
+
|
7714
|
+
.gc-ui-contextmenu-search-box {
|
7715
|
+
margin-left: 30px;
|
7716
|
+
width: 166px;
|
7717
|
+
}
|