vue-editify 0.2.2 → 0.2.4

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/vite.config.ts CHANGED
@@ -38,7 +38,7 @@ export default defineConfig({
38
38
  less: {
39
39
  // 使用 less 编写样式的 UI 库(如 antd)时建议加入这个设置
40
40
  javascriptEnabled: true,
41
- additionalData: `@import "src/css/base.less";`
41
+ additionalData: `@import "src/css/var.less";`
42
42
  }
43
43
  }
44
44
  },
package/src/css/base.less DELETED
@@ -1,32 +0,0 @@
1
- //三角图标大小
2
- @triangle-size: 6px;
3
- //编辑器内的默认字体大小
4
- @font-size: 14px;
5
- //较小的字体(工具提示等)
6
- @font-size-small: 12px;
7
- //字体颜色
8
- @font-color: #555;
9
- //较浅的字体颜色(副文本颜色)
10
- @font-color-light: #888;
11
- //更浅的字体颜色(placeholder和禁用字体颜色)
12
- @font-color-disabled: #bbb;
13
- //较深的字体颜色(编辑器内容区域字体颜色)
14
- @font-color-dark: #333;
15
- //链接字体颜色
16
- @font-color-link: #079457;
17
- //链接字体悬浮色
18
- @font-color-link-dark: #05683d;
19
- //边框颜色
20
- @border-color: #dfdfdf;
21
- //默认背景色
22
- @background: #fff;
23
- //较深的背景色
24
- @background-dark: #f7f8fa;
25
- //更深的背景色
26
- @background-darker: #ebedf0;
27
- //代码块背景色
28
- @pre-background: #f2f6fb;
29
- //反色调字体颜色
30
- @reverse-color: #fff;
31
- //反色调背景色
32
- @reverse-background: #000;