@fileverse-dev/fortune-react 1.0.2-mod-25 → 1.0.2-mod-26
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/components/ConditionFormat/index.d.ts +1 -1
- package/dist/components/ContextMenu/index.d.ts +0 -1
- package/dist/components/Dialog/index.d.ts +0 -1
- package/dist/hooks/useDialog.d.ts +1 -1
- package/dist/index.css +177 -122
- package/dist/index.esm.css +177 -122
- package/dist/index.esm.js +518 -637
- package/dist/index.js +516 -636
- package/dist/index.umd.css +177 -122
- package/dist/index.umd.js +3561 -9186
- package/dist/index.umd.min.css +1 -1
- package/dist/index.umd.min.js +9 -9
- package/package.json +2 -3
- package/dist/components/DataVerification/getDisplayedRangeTxt.d.ts +0 -2
|
@@ -2,6 +2,6 @@ import React from "react";
|
|
|
2
2
|
import "./index.css";
|
|
3
3
|
declare const ConditionalFormat: React.FC<{
|
|
4
4
|
items: string[];
|
|
5
|
-
setOpen
|
|
5
|
+
setOpen: React.Dispatch<React.SetStateAction<boolean>>;
|
|
6
6
|
}>;
|
|
7
7
|
export default ConditionalFormat;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
export declare function useDialog(): {
|
|
3
|
-
showDialog: (content: string | React.ReactNode, type?: "ok" | "yesno",
|
|
3
|
+
showDialog: (content: string | React.ReactNode, type?: "ok" | "yesno", onOk?: () => void, onCancel?: () => void) => void;
|
|
4
4
|
hideDialog: () => void;
|
|
5
5
|
};
|
package/dist/index.css
CHANGED
|
@@ -1073,10 +1073,10 @@ html::-webkit-scrollbar-button {
|
|
|
1073
1073
|
width: 300px;
|
|
1074
1074
|
}
|
|
1075
1075
|
|
|
1076
|
-
.luckysheet-formula-help-c .luckysheet-formula-help-content {
|
|
1076
|
+
/* .luckysheet-formula-help-c .luckysheet-formula-help-content {
|
|
1077
1077
|
max-height: 300px;
|
|
1078
1078
|
overflow-y: scroll;
|
|
1079
|
-
}
|
|
1079
|
+
} */
|
|
1080
1080
|
|
|
1081
1081
|
.luckysheet-formula-help-content-example {
|
|
1082
1082
|
margin-top: 5px;
|
|
@@ -1091,6 +1091,101 @@ html::-webkit-scrollbar-button {
|
|
|
1091
1091
|
font-size: 14px;
|
|
1092
1092
|
}
|
|
1093
1093
|
|
|
1094
|
+
.luckysheet-formula-help-title,
|
|
1095
|
+
.luckysheet-formula-search-item-active {
|
|
1096
|
+
padding: 10px !important;
|
|
1097
|
+
font-size: small;
|
|
1098
|
+
/* background: #f8f9fa !important; */
|
|
1099
|
+
font-weight: 600;
|
|
1100
|
+
border-bottom: 0px !important;
|
|
1101
|
+
border-top: 0px !important;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.luckysheet-formula-help-c,
|
|
1105
|
+
.luckysheet-formula-search-c {
|
|
1106
|
+
padding: 6px;
|
|
1107
|
+
-webkit-user-select: text;
|
|
1108
|
+
-moz-user-select: text;
|
|
1109
|
+
user-select: text;
|
|
1110
|
+
border-radius: 10px;
|
|
1111
|
+
top: 25px;
|
|
1112
|
+
background: #f8f9fa;
|
|
1113
|
+
min-width: 300px;
|
|
1114
|
+
width: -moz-fit-content;
|
|
1115
|
+
width: fit-content;
|
|
1116
|
+
/* max-width: 450px; */
|
|
1117
|
+
border: 1px solid lavender;
|
|
1118
|
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
#luckysheet-formula-help-c {
|
|
1122
|
+
border-radius: 10px;
|
|
1123
|
+
top: 25px;
|
|
1124
|
+
background: #f8f9fa;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
.luckysheet-formula-help-title-formula {
|
|
1128
|
+
width: -moz-fit-content;
|
|
1129
|
+
width: fit-content;
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.luckysheet-formula-help-content {
|
|
1133
|
+
background-color: white;
|
|
1134
|
+
/* margin: 0px 8px 8px 8px; */
|
|
1135
|
+
padding: 2px;
|
|
1136
|
+
border-radius: 0px 0px 10px 10px;
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
.luckysheet-formula-help-content-param,
|
|
1140
|
+
.luckysheet-formula-help-content {
|
|
1141
|
+
display: flex;
|
|
1142
|
+
flex-direction: column;
|
|
1143
|
+
/* gap: 8px; */
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
.luckysheet-formula-help-content-param {
|
|
1147
|
+
padding-top: 4px;
|
|
1148
|
+
border-top: 1px solid lightgrey;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
.luckysheet-formula-help-content-example {
|
|
1152
|
+
display: flex;
|
|
1153
|
+
flex-direction: column;
|
|
1154
|
+
gap: 4px;
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
.luckysheet-arguments-help-section-title {
|
|
1158
|
+
font-size: 14px;
|
|
1159
|
+
font-weight: 600;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
.example-title {
|
|
1163
|
+
color: var(--color-text-secondary, #77818A);
|
|
1164
|
+
|
|
1165
|
+
/* fv/text/helper/sm-bold */
|
|
1166
|
+
font-family: "Helvetica Neue";
|
|
1167
|
+
font-size: var(--font-size-2xsm, 12px);
|
|
1168
|
+
font-style: normal;
|
|
1169
|
+
font-weight: 500;
|
|
1170
|
+
line-height: 16px; /* 133.333% */
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
.example-value {
|
|
1174
|
+
color: var(--color-text-default, #363B3F);
|
|
1175
|
+
|
|
1176
|
+
/* fv/text/helper/sm */
|
|
1177
|
+
font-family: "Helvetica Neue";
|
|
1178
|
+
font-size: var(--font-size-2xsm, 12px);
|
|
1179
|
+
font-style: normal;
|
|
1180
|
+
font-weight: 400;
|
|
1181
|
+
line-height: 16px; /* 133.333% */
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.formula-title {
|
|
1185
|
+
display: flex;
|
|
1186
|
+
justify-content: space-between;
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1094
1189
|
.luckysheet-formula-help-title-formula {
|
|
1095
1190
|
width: 250px;
|
|
1096
1191
|
word-break: break-word;
|
|
@@ -1419,30 +1514,6 @@ html::-webkit-scrollbar-button {
|
|
|
1419
1514
|
min-width: 154px;
|
|
1420
1515
|
}
|
|
1421
1516
|
|
|
1422
|
-
/* Add scrollbar styles */
|
|
1423
|
-
#fortune-search-replace .table-container {
|
|
1424
|
-
scrollbar-width: thin;
|
|
1425
|
-
scrollbar-color: #babac0 transparent;
|
|
1426
|
-
}
|
|
1427
|
-
|
|
1428
|
-
#fortune-search-replace .table-container::-webkit-scrollbar {
|
|
1429
|
-
width: 8px;
|
|
1430
|
-
height: 8px;
|
|
1431
|
-
}
|
|
1432
|
-
|
|
1433
|
-
#fortune-search-replace .table-container::-webkit-scrollbar-track {
|
|
1434
|
-
background-color: transparent;
|
|
1435
|
-
}
|
|
1436
|
-
|
|
1437
|
-
#fortune-search-replace .table-container::-webkit-scrollbar-thumb {
|
|
1438
|
-
background-color: #babac0;
|
|
1439
|
-
border-radius: 16px;
|
|
1440
|
-
}
|
|
1441
|
-
|
|
1442
|
-
#fortune-search-replace .table-container::-webkit-scrollbar-button {
|
|
1443
|
-
display: none;
|
|
1444
|
-
}
|
|
1445
|
-
|
|
1446
1517
|
.fortune-link-modify-modal {
|
|
1447
1518
|
position: absolute;
|
|
1448
1519
|
overflow: hidden;
|
|
@@ -1758,11 +1829,14 @@ html::-webkit-scrollbar-button {
|
|
|
1758
1829
|
}
|
|
1759
1830
|
|
|
1760
1831
|
#range-dialog {
|
|
1761
|
-
box-shadow:
|
|
1832
|
+
box-shadow: 0 4px 16px rgb(0 0 0 / 20%);
|
|
1762
1833
|
background: #fff;
|
|
1763
|
-
|
|
1834
|
+
background-clip: padding-box;
|
|
1835
|
+
border: 1px solid rgba(0, 0, 0, 0.333);
|
|
1764
1836
|
outline: 0;
|
|
1765
1837
|
position: absolute;
|
|
1838
|
+
color: #000;
|
|
1839
|
+
padding: 30px 42px;
|
|
1766
1840
|
z-index: 100003;
|
|
1767
1841
|
left: 50%;
|
|
1768
1842
|
top: 50%;
|
|
@@ -1828,41 +1902,34 @@ html::-webkit-scrollbar-button {
|
|
|
1828
1902
|
|
|
1829
1903
|
.condition-format-sub-menu {
|
|
1830
1904
|
position: absolute;
|
|
1831
|
-
top: -
|
|
1832
|
-
box-shadow:
|
|
1905
|
+
top: -8px;
|
|
1906
|
+
box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
|
|
1833
1907
|
background: #fff;
|
|
1834
|
-
border: 1px solid
|
|
1835
|
-
border-radius: 8px;
|
|
1908
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
1836
1909
|
cursor: default;
|
|
1837
|
-
font-size:
|
|
1910
|
+
font-size: 12px;
|
|
1838
1911
|
z-index: 1004;
|
|
1839
1912
|
box-sizing: border-box;
|
|
1840
1913
|
-webkit-user-select: none;
|
|
1841
1914
|
-moz-user-select: none;
|
|
1842
1915
|
user-select: none;
|
|
1843
1916
|
outline: none;
|
|
1844
|
-
padding: 8px;
|
|
1845
|
-
min-width: 190px;
|
|
1846
1917
|
}
|
|
1847
1918
|
|
|
1848
1919
|
.condition-format-item {
|
|
1849
1920
|
display: flex;
|
|
1850
1921
|
justify-content: space-between;
|
|
1851
|
-
padding:
|
|
1922
|
+
padding: 6px 18px;
|
|
1852
1923
|
z-index: 1005;
|
|
1853
|
-
border-radius: 4px;
|
|
1854
|
-
cursor: pointer;
|
|
1855
1924
|
}
|
|
1856
1925
|
|
|
1857
1926
|
.condition-format-item:hover {
|
|
1858
|
-
background:
|
|
1859
|
-
transition: all 0.2s ease-in-out;
|
|
1927
|
+
background: #efefef;
|
|
1860
1928
|
}
|
|
1861
1929
|
|
|
1862
1930
|
.condition-format-item span {
|
|
1863
|
-
font-size:
|
|
1864
|
-
color:
|
|
1865
|
-
font-weight: 400;
|
|
1931
|
+
font-size: 10px;
|
|
1932
|
+
color: #afafaf;
|
|
1866
1933
|
}
|
|
1867
1934
|
|
|
1868
1935
|
.horizontal-line {
|
|
@@ -1904,11 +1971,8 @@ html::-webkit-scrollbar-button {
|
|
|
1904
1971
|
}
|
|
1905
1972
|
|
|
1906
1973
|
.condition-rules {
|
|
1907
|
-
|
|
1908
|
-
font-size:
|
|
1909
|
-
display: flex;
|
|
1910
|
-
flex-direction: column;
|
|
1911
|
-
gap: 16px;
|
|
1974
|
+
padding: 0px 42px 34px 42px;
|
|
1975
|
+
font-size: 12px;
|
|
1912
1976
|
}
|
|
1913
1977
|
|
|
1914
1978
|
.condition-rules-title {
|
|
@@ -1918,8 +1982,9 @@ html::-webkit-scrollbar-button {
|
|
|
1918
1982
|
margin-bottom: 18px;
|
|
1919
1983
|
}
|
|
1920
1984
|
|
|
1921
|
-
.
|
|
1922
|
-
margin
|
|
1985
|
+
.conditin-rules-value {
|
|
1986
|
+
margin: 5px 0;
|
|
1987
|
+
font-weight: 600;
|
|
1923
1988
|
}
|
|
1924
1989
|
|
|
1925
1990
|
.condition-rules-inpbox {
|
|
@@ -1949,45 +2014,40 @@ html::-webkit-scrollbar-button {
|
|
|
1949
2014
|
}
|
|
1950
2015
|
|
|
1951
2016
|
.condition-rules-setbox {
|
|
1952
|
-
|
|
1953
|
-
flex-direction: column;
|
|
1954
|
-
gap: 8px;
|
|
2017
|
+
border: 1px solid #d4d4d4;
|
|
1955
2018
|
}
|
|
1956
2019
|
|
|
1957
2020
|
.condition-rules-set {
|
|
1958
|
-
|
|
1959
|
-
display: flex;
|
|
1960
|
-
align-items: center;
|
|
1961
|
-
gap: 8px;
|
|
2021
|
+
padding: 5px 10px;
|
|
1962
2022
|
}
|
|
1963
2023
|
|
|
1964
2024
|
.condition-rules-color {
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
2025
|
+
height: 30px;
|
|
2026
|
+
line-height: 30px;
|
|
2027
|
+
position: relative;
|
|
1968
2028
|
}
|
|
1969
2029
|
|
|
1970
2030
|
.condition-rules-check {
|
|
1971
|
-
|
|
1972
|
-
|
|
2031
|
+
float: left;
|
|
2032
|
+
margin-top: 10px;
|
|
1973
2033
|
}
|
|
1974
2034
|
|
|
1975
2035
|
.condition-rules-label {
|
|
1976
2036
|
display: inline-block;
|
|
1977
|
-
width:
|
|
2037
|
+
width: 80px;
|
|
1978
2038
|
-webkit-user-select: none;
|
|
1979
2039
|
-moz-user-select: none;
|
|
1980
2040
|
user-select: none;
|
|
1981
2041
|
}
|
|
1982
2042
|
|
|
1983
2043
|
.condition-rules-select-color {
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
2044
|
+
padding: 2px;
|
|
2045
|
+
border: solid 1px #e5e5e5;
|
|
2046
|
+
background: #f5f5f5;
|
|
2047
|
+
position: absolute;
|
|
2048
|
+
top: 50%;
|
|
2049
|
+
left: 50%;
|
|
2050
|
+
transform: translate(20%, -50%);
|
|
1991
2051
|
}
|
|
1992
2052
|
|
|
1993
2053
|
.condition-rules-between-box {
|
|
@@ -2011,37 +2071,23 @@ html::-webkit-scrollbar-button {
|
|
|
2011
2071
|
}
|
|
2012
2072
|
|
|
2013
2073
|
.condition-rules-date {
|
|
2014
|
-
width:
|
|
2074
|
+
width: 98%;
|
|
2075
|
+
border: none;
|
|
2076
|
+
line-height: 26px;
|
|
2015
2077
|
}
|
|
2016
2078
|
|
|
2017
2079
|
.condition-rules-select {
|
|
2018
|
-
width:
|
|
2019
|
-
|
|
2080
|
+
width: 150px;
|
|
2081
|
+
height: 30px;
|
|
2020
2082
|
}
|
|
2021
2083
|
|
|
2022
2084
|
.condition-rules-project-box {
|
|
2023
2085
|
display: flex;
|
|
2024
2086
|
align-items: center;
|
|
2025
|
-
gap: 8px;
|
|
2026
2087
|
}
|
|
2027
2088
|
|
|
2028
2089
|
.condition-rules-project-input {
|
|
2029
|
-
margin: 0px;
|
|
2030
|
-
width: -moz-fit-content;
|
|
2031
|
-
width: fit-content;
|
|
2032
|
-
max-width: 55px !important;
|
|
2033
|
-
}
|
|
2034
|
-
|
|
2035
|
-
/* Hide arrows for Chrome, Safari, Edge */
|
|
2036
|
-
input[type="number"].condition-rules-project-input::-webkit-outer-spin-button,
|
|
2037
|
-
input[type="number"].condition-rules-project-input::-webkit-inner-spin-button {
|
|
2038
|
-
-webkit-appearance: none;
|
|
2039
|
-
margin: 0;
|
|
2040
|
-
}
|
|
2041
|
-
|
|
2042
|
-
/* Hide arrows for Firefox */
|
|
2043
|
-
input[type="number"].condition-rules-project-input {
|
|
2044
|
-
-moz-appearance: textfield;
|
|
2090
|
+
margin: 0px 6px;
|
|
2045
2091
|
}
|
|
2046
2092
|
|
|
2047
2093
|
.fortune-toolbar {
|
|
@@ -2073,7 +2119,7 @@ input[type="number"].condition-rules-project-input {
|
|
|
2073
2119
|
.fortune-toolbar-menu-divider {
|
|
2074
2120
|
width: "100%";
|
|
2075
2121
|
height: 1px;
|
|
2076
|
-
margin:
|
|
2122
|
+
margin: 2px 6px;
|
|
2077
2123
|
background-color: #e0e0e0;
|
|
2078
2124
|
}
|
|
2079
2125
|
|
|
@@ -2139,14 +2185,14 @@ input[type="number"].condition-rules-project-input {
|
|
|
2139
2185
|
.fortune-toolbar-select,
|
|
2140
2186
|
.fortune-toolbar-color-picker {
|
|
2141
2187
|
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
|
|
2142
|
-
padding:
|
|
2143
|
-
border:
|
|
2144
|
-
border-radius: 8px;
|
|
2188
|
+
padding: 10px;
|
|
2189
|
+
border-radius: 6px;
|
|
2145
2190
|
background: white;
|
|
2146
|
-
min-width: 240px;
|
|
2147
2191
|
}
|
|
2148
2192
|
|
|
2149
2193
|
.fortune-toolbar-select {
|
|
2194
|
+
padding-left: 0;
|
|
2195
|
+
padding-right: 0;
|
|
2150
2196
|
overflow: auto;
|
|
2151
2197
|
max-height: 75vh;
|
|
2152
2198
|
}
|
|
@@ -2158,7 +2204,7 @@ input[type="number"].condition-rules-project-input {
|
|
|
2158
2204
|
.fortune-toolbar-select-option {
|
|
2159
2205
|
font-size: 12px;
|
|
2160
2206
|
min-width: 60px;
|
|
2161
|
-
padding: 8px;
|
|
2207
|
+
padding: 8px 12px;
|
|
2162
2208
|
cursor: pointer;
|
|
2163
2209
|
-webkit-user-select: none;
|
|
2164
2210
|
-moz-user-select: none;
|
|
@@ -2166,9 +2212,7 @@ input[type="number"].condition-rules-project-input {
|
|
|
2166
2212
|
}
|
|
2167
2213
|
|
|
2168
2214
|
.fortune-toolbar-select-option:hover {
|
|
2169
|
-
background:
|
|
2170
|
-
border-radius: 4px;
|
|
2171
|
-
transition: all 0.2s ease-in-out;
|
|
2215
|
+
background: #efefef;
|
|
2172
2216
|
}
|
|
2173
2217
|
|
|
2174
2218
|
.fortune-toolbar-select::-webkit-scrollbar {
|
|
@@ -2367,7 +2411,6 @@ input[type="number"].condition-rules-project-input {
|
|
|
2367
2411
|
background: #efefef;
|
|
2368
2412
|
cursor: pointer;
|
|
2369
2413
|
}
|
|
2370
|
-
|
|
2371
2414
|
/*函数公式查找样式*/
|
|
2372
2415
|
#luckysheet-search-formula {
|
|
2373
2416
|
font-size: 12px;
|
|
@@ -3032,30 +3075,30 @@ label {
|
|
|
3032
3075
|
}
|
|
3033
3076
|
|
|
3034
3077
|
.fortune-context-menu {
|
|
3035
|
-
min-width: 240px;
|
|
3036
3078
|
max-height: 100%;
|
|
3037
3079
|
overflow-y: auto;
|
|
3038
3080
|
border-radius: 4px;
|
|
3039
|
-
box-shadow: 2px 2px
|
|
3081
|
+
box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.15);
|
|
3040
3082
|
transition: opacity 0.218s;
|
|
3041
3083
|
background: #fff;
|
|
3042
|
-
border: 1px solid
|
|
3084
|
+
border: 1px solid #E8EBEC;
|
|
3085
|
+
border: 1px solid #E8EBEC;
|
|
3043
3086
|
cursor: default;
|
|
3044
3087
|
font-size: 13px;
|
|
3045
3088
|
margin: 0;
|
|
3046
3089
|
outline: none;
|
|
3047
|
-
padding:
|
|
3090
|
+
padding: 6px 0;
|
|
3048
3091
|
position: absolute;
|
|
3049
3092
|
z-index: 1004;
|
|
3050
3093
|
box-sizing: border-box;
|
|
3051
3094
|
-webkit-user-select: none;
|
|
3052
3095
|
-moz-user-select: none;
|
|
3053
3096
|
user-select: none;
|
|
3054
|
-
font-family:
|
|
3097
|
+
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
3055
3098
|
font-size: 14px;
|
|
3056
3099
|
max-width: 250px;
|
|
3057
3100
|
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.08);
|
|
3058
|
-
color: #
|
|
3101
|
+
color: #363B3F;
|
|
3059
3102
|
line-height: 20px;
|
|
3060
3103
|
}
|
|
3061
3104
|
|
|
@@ -3063,14 +3106,8 @@ label {
|
|
|
3063
3106
|
display: flex;
|
|
3064
3107
|
align-items: center;
|
|
3065
3108
|
height: 20px;
|
|
3066
|
-
cursor: pointer;
|
|
3067
|
-
border-radius: 4px;
|
|
3068
3109
|
}
|
|
3069
3110
|
|
|
3070
|
-
.context-item:hover {
|
|
3071
|
-
background: hsl(var(--color-bg-default-hover));
|
|
3072
|
-
transition: all 0.2s ease-in-out;
|
|
3073
|
-
}
|
|
3074
3111
|
|
|
3075
3112
|
.fortune-context-menu input.luckysheet-mousedown-cancel {
|
|
3076
3113
|
width: 35px;
|
|
@@ -3092,19 +3129,20 @@ label {
|
|
|
3092
3129
|
cursor: pointer;
|
|
3093
3130
|
list-style: none;
|
|
3094
3131
|
margin: 0;
|
|
3132
|
+
padding: 1px 6em 1px 20px;
|
|
3095
3133
|
white-space: nowrap;
|
|
3134
|
+
padding-left: 8px;
|
|
3096
3135
|
vertical-align: middle;
|
|
3136
|
+
padding-right: 24px;
|
|
3097
3137
|
-webkit-user-select: none;
|
|
3098
3138
|
-moz-user-select: none;
|
|
3099
3139
|
user-select: none;
|
|
3100
|
-
border-radius: 4px;
|
|
3101
3140
|
}
|
|
3102
3141
|
|
|
3103
3142
|
/* 右击菜单项目 hover背景色 */
|
|
3104
3143
|
.luckysheet-cols-menu .luckysheet-cols-menuitem:hover,
|
|
3105
3144
|
.luckysheet-cols-menu .luckysheet-cols-menuitem-hover {
|
|
3106
|
-
background:
|
|
3107
|
-
transition: all 0.2s ease-in-out;
|
|
3145
|
+
background: #efefef;
|
|
3108
3146
|
}
|
|
3109
3147
|
|
|
3110
3148
|
.luckysheet-cols-menu
|
|
@@ -3115,14 +3153,11 @@ label {
|
|
|
3115
3153
|
cursor: pointer;
|
|
3116
3154
|
list-style: none;
|
|
3117
3155
|
margin: 0;
|
|
3118
|
-
padding:
|
|
3156
|
+
padding: 6px 10px 6px 10px !important;
|
|
3119
3157
|
white-space: nowrap;
|
|
3120
3158
|
-webkit-user-select: none;
|
|
3121
3159
|
-moz-user-select: none;
|
|
3122
3160
|
user-select: none;
|
|
3123
|
-
display: flex;
|
|
3124
|
-
align-items: center;
|
|
3125
|
-
gap: 8px;
|
|
3126
3161
|
}
|
|
3127
3162
|
|
|
3128
3163
|
.fortune-filter-menu .luckysheet-cols-menuitem {
|
|
@@ -3341,10 +3376,30 @@ label {
|
|
|
3341
3376
|
right: -18px;
|
|
3342
3377
|
}
|
|
3343
3378
|
|
|
3344
|
-
.
|
|
3345
|
-
background-color:
|
|
3379
|
+
.fortune-sort-title {
|
|
3380
|
+
background-color: #fff;
|
|
3381
|
+
color: #000;
|
|
3382
|
+
cursor: default;
|
|
3383
|
+
font-size: 16px;
|
|
3384
|
+
font-weight: 400;
|
|
3385
|
+
line-height: 24px;
|
|
3386
|
+
margin: 0 0 16px;
|
|
3346
3387
|
}
|
|
3347
|
-
|
|
3388
|
+
|
|
3389
|
+
.fortune-sort-modal > div {
|
|
3390
|
+
margin-bottom: 10px;
|
|
3391
|
+
}
|
|
3392
|
+
|
|
3393
|
+
.fortune-sort-tablec td {
|
|
3394
|
+
padding: 5px;
|
|
3395
|
+
white-space: nowrap;
|
|
3396
|
+
}
|
|
3397
|
+
|
|
3398
|
+
.fortune-sort-button {
|
|
3399
|
+
margin-top: 10px;
|
|
3400
|
+
margin-bottom: 25px;
|
|
3401
|
+
}
|
|
3402
|
+
|
|
3348
3403
|
#fortune-change-color {
|
|
3349
3404
|
min-width: 164px;
|
|
3350
3405
|
height: 252px;
|