فهرست منبع

ui-cosmetics: use monospace font for the textboxes in tab-settings

tophf 6 سال پیش
والد
کامیت
9272d4c39b
2فایلهای تغییر یافته به همراه5 افزوده شده و 1 حذف شده
  1. 1 1
      src/common/ui/setting-text.vue
  2. 4 0
      src/common/ui/style/style.css

+ 1 - 1
src/common/ui/setting-text.vue

@@ -1,5 +1,5 @@
 <template>
-  <textarea v-model="value" @change="onChange" :disabled="disabled" />
+  <textarea class="monospace-font" v-model="value" @change="onChange" :disabled="disabled" />
 </template>
 
 <script>

+ 4 - 0
src/common/ui/style/style.css

@@ -242,6 +242,10 @@ button,
 
 .editor-code .CodeMirror {
   height: 100%;
+}
+
+.monospace-font,
+.editor-code .CodeMirror {
   /* Use `Courier New` to ensure `&nbsp;` has the same width as an original space. */
   font-family: "Fira Code", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", Courier, monospace;
 }