1
1
Fork 0
mirror of https://github.com/boxgaming/qbjs.git synced 2025-01-15 12:21:17 +00:00

fix vim cursor for themes with default dos font

This commit is contained in:
boxgaming 2025-01-13 13:03:25 -06:00
parent 4c5c4f90f9
commit c9771c99d3
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@
.cm-s-qbjs div.CodeMirror-selected { background: #45443B; } /* 33322B*/
.cm-s-qbjs .CodeMirror-line::selection, .cm-s-qbjs .CodeMirror-line > span::selection, .cm-s-qbjs .CodeMirror-line > span > span::selection { background: rgba(0, 49, 78, .99); }
.cm-s-qbjs .CodeMirror-line::-moz-selection, .cm-s-qbjs .CodeMirror-line > span::-moz-selection, .cm-s-qbjs .CodeMirror-line > span > span::-moz-selection { background: rgba(69, 68, 59, .99); }
.cm-s-qbjs .CodeMirror-cursor { border-left: 1px solid #fff; overflow: hidden; width: 0px;}
.cm-s-qbjs .CodeMirror-cursor { border-left: 1px solid #fff; } /* overflow: hidden; width: 0px;} */
.cm-s-qbjs pre { padding: 0 8px; }/*editable code holder*/
.cm-s-qbjs.CodeMirror span.CodeMirror-matchingbracket { color: #7EFC7E; }/*65FC65*/

View file

@ -14,7 +14,7 @@
// Names of the two caches used in this version of the service worker.
// Change to v2, etc. when you update any of the local resources, which will
// in turn trigger the install event again.
const PRECACHE = 'precache-v21';
const PRECACHE = 'precache-v22';
const RUNTIME = 'runtime';
const PREFIX = (self.location.origin.indexOf("github.io") == -1) ? "/" : "/qbjs/";