rwb-codemirror-helix 0.2.1 → 0.2.2
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/index.cjs +9 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +9 -7
- package/dist/index.js.map +1 -1
- package/package.json +2 -4
package/dist/index.js
CHANGED
|
@@ -2453,11 +2453,12 @@ var searchTheme = EditorView2.baseTheme({
|
|
|
2453
2453
|
display: "flex",
|
|
2454
2454
|
alignItems: "center",
|
|
2455
2455
|
gap: "4px",
|
|
2456
|
-
background: "var(--helix-
|
|
2457
|
-
borderTop: "1px solid #
|
|
2456
|
+
background: "var(--helix-status-bg, inherit)",
|
|
2457
|
+
borderTop: "1px solid var(--helix-status-border, #999)"
|
|
2458
2458
|
},
|
|
2459
2459
|
"& .helix-search-prefix": {
|
|
2460
|
-
color: "
|
|
2460
|
+
color: "var(--helix-pending-color, inherit)",
|
|
2461
|
+
opacity: "0.7",
|
|
2461
2462
|
fontFamily: "monospace",
|
|
2462
2463
|
minWidth: "12px"
|
|
2463
2464
|
},
|
|
@@ -2471,7 +2472,8 @@ var searchTheme = EditorView2.baseTheme({
|
|
|
2471
2472
|
fontSize: "inherit"
|
|
2472
2473
|
},
|
|
2473
2474
|
"& .helix-search-count": {
|
|
2474
|
-
color: "
|
|
2475
|
+
color: "inherit",
|
|
2476
|
+
opacity: "0.5",
|
|
2475
2477
|
fontSize: "0.8em",
|
|
2476
2478
|
minWidth: "60px",
|
|
2477
2479
|
textAlign: "right"
|
|
@@ -2684,13 +2686,13 @@ var multiSelectTheme = EditorView3.baseTheme({
|
|
|
2684
2686
|
alignItems: "center",
|
|
2685
2687
|
padding: "4px 8px",
|
|
2686
2688
|
gap: "6px",
|
|
2687
|
-
borderTop: "1px solid var(--helix-border, #
|
|
2688
|
-
background: "var(--helix-
|
|
2689
|
+
borderTop: "1px solid var(--helix-status-border, #999)",
|
|
2690
|
+
background: "var(--helix-status-bg, inherit)",
|
|
2689
2691
|
fontFamily: "monospace",
|
|
2690
2692
|
fontSize: "14px"
|
|
2691
2693
|
},
|
|
2692
2694
|
".helix-multiselect-prefix": {
|
|
2693
|
-
color: "var(--helix-
|
|
2695
|
+
color: "var(--helix-normal-color, #0080e0)",
|
|
2694
2696
|
fontWeight: "bold",
|
|
2695
2697
|
whiteSpace: "nowrap"
|
|
2696
2698
|
},
|