@fileverse-dev/fortune-react 1.0.2-mod-25-patch-1 → 1.0.2-mod-27

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.
@@ -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;
@@ -2368,6 +2463,72 @@ input[type="number"].condition-rules-project-input {
2368
2463
  cursor: pointer;
2369
2464
  }
2370
2465
 
2466
+ /*函数公式查找样式*/
2467
+ #luckysheet-search-formula {
2468
+ font-size: 12px;
2469
+ }
2470
+
2471
+ #luckysheet-search-formula .inpbox {
2472
+ margin-bottom: 5px;
2473
+ }
2474
+
2475
+ #luckysheet-search-formula .inpbox div {
2476
+ display: block;
2477
+ margin-bottom: 5px;
2478
+ }
2479
+
2480
+ #luckysheet-search-formula .inpbox input {
2481
+ width: 100%;
2482
+ height: 24px;
2483
+ line-height: 24px;
2484
+ border: 1px solid #d4d4d4;
2485
+ padding: 0 10px;
2486
+ box-sizing: border-box;
2487
+ font-size: 12px;
2488
+ }
2489
+
2490
+ #luckysheet-search-formula .selbox {
2491
+ margin-bottom: 5px;
2492
+ }
2493
+
2494
+ #luckysheet-search-formula .selbox select {
2495
+ width: 50%;
2496
+ height: 24px;
2497
+ line-height: 24px;
2498
+ border: 1px solid #d4d4d4;
2499
+ box-sizing: border-box;
2500
+ font-size: 12px;
2501
+ }
2502
+
2503
+ #luckysheet-search-formula .listbox label {
2504
+ display: block;
2505
+ margin-bottom: 5px;
2506
+ }
2507
+
2508
+ #formulaTypeList {
2509
+ width: 300px;
2510
+ height: 170px;
2511
+ border: 1px solid #d4d4d4;
2512
+ overflow-y: scroll;
2513
+ }
2514
+
2515
+ .formulaList {
2516
+ width: 300px;
2517
+ height: 170px;
2518
+ border: 1px solid #d4d4d4;
2519
+ overflow-y: scroll;
2520
+ }
2521
+
2522
+ .listBox {
2523
+ padding: 5px;
2524
+ border-bottom: 1px solid #d4d4d4;
2525
+ }
2526
+
2527
+ .listBox.on {
2528
+ background-color: #8c89fe;
2529
+ color: #fff;
2530
+ }
2531
+
2371
2532
  #fortune-split-column {
2372
2533
  /* position: absolute;
2373
2534
  padding: 30px 42px;