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.cjs
CHANGED
|
@@ -2454,11 +2454,12 @@ var searchTheme = import_view2.EditorView.baseTheme({
|
|
|
2454
2454
|
display: "flex",
|
|
2455
2455
|
alignItems: "center",
|
|
2456
2456
|
gap: "4px",
|
|
2457
|
-
background: "var(--helix-
|
|
2458
|
-
borderTop: "1px solid #
|
|
2457
|
+
background: "var(--helix-status-bg, inherit)",
|
|
2458
|
+
borderTop: "1px solid var(--helix-status-border, #999)"
|
|
2459
2459
|
},
|
|
2460
2460
|
"& .helix-search-prefix": {
|
|
2461
|
-
color: "
|
|
2461
|
+
color: "var(--helix-pending-color, inherit)",
|
|
2462
|
+
opacity: "0.7",
|
|
2462
2463
|
fontFamily: "monospace",
|
|
2463
2464
|
minWidth: "12px"
|
|
2464
2465
|
},
|
|
@@ -2472,7 +2473,8 @@ var searchTheme = import_view2.EditorView.baseTheme({
|
|
|
2472
2473
|
fontSize: "inherit"
|
|
2473
2474
|
},
|
|
2474
2475
|
"& .helix-search-count": {
|
|
2475
|
-
color: "
|
|
2476
|
+
color: "inherit",
|
|
2477
|
+
opacity: "0.5",
|
|
2476
2478
|
fontSize: "0.8em",
|
|
2477
2479
|
minWidth: "60px",
|
|
2478
2480
|
textAlign: "right"
|
|
@@ -2681,13 +2683,13 @@ var multiSelectTheme = import_view3.EditorView.baseTheme({
|
|
|
2681
2683
|
alignItems: "center",
|
|
2682
2684
|
padding: "4px 8px",
|
|
2683
2685
|
gap: "6px",
|
|
2684
|
-
borderTop: "1px solid var(--helix-border, #
|
|
2685
|
-
background: "var(--helix-
|
|
2686
|
+
borderTop: "1px solid var(--helix-status-border, #999)",
|
|
2687
|
+
background: "var(--helix-status-bg, inherit)",
|
|
2686
2688
|
fontFamily: "monospace",
|
|
2687
2689
|
fontSize: "14px"
|
|
2688
2690
|
},
|
|
2689
2691
|
".helix-multiselect-prefix": {
|
|
2690
|
-
color: "var(--helix-
|
|
2692
|
+
color: "var(--helix-normal-color, #0080e0)",
|
|
2691
2693
|
fontWeight: "bold",
|
|
2692
2694
|
whiteSpace: "nowrap"
|
|
2693
2695
|
},
|