ronds-metadata 1.2.39 → 1.2.41
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/es/comps/MdEditPro/index.less +34 -0
- package/es/config.js +2 -2
- package/package.json +1 -1
|
@@ -3,6 +3,39 @@
|
|
|
3
3
|
/* Make sure all content containers have some min height to make them easier to locate. */
|
|
4
4
|
min-height: 300px;
|
|
5
5
|
padding: 10px 20px;
|
|
6
|
+
color: var(--ronds-metadata-color-text-2) !important;
|
|
7
|
+
background-color: var(--ronds-metadata-color-bg-5) !important;
|
|
8
|
+
border: 1px solid var(--ronds-metadata-color-border-1) !important;
|
|
9
|
+
}
|
|
10
|
+
.ck .ck-editor {
|
|
11
|
+
background-color: var(--ronds-metadata-color-bg-5) !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.ck.ck-toolbar,
|
|
15
|
+
.ck .ck-editor__top {
|
|
16
|
+
color: var(--ronds-metadata-color-text-2) !important;
|
|
17
|
+
background-color: var(--ronds-metadata-color-bg-5) !important;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.ck .ck-toolbar {
|
|
21
|
+
border: 1px solid var(--ronds-metadata-color-border-1) !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.ck .ck-list {
|
|
25
|
+
color: var(--ronds-metadata-color-text-2) !important;
|
|
26
|
+
background-color: var(--ronds-metadata-color-bg-5) !important;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.ck.ck-button,
|
|
30
|
+
.ck .ck-toolbar__separator,
|
|
31
|
+
.ck .ck-button__label,
|
|
32
|
+
.ck .ck-toolbar__items {
|
|
33
|
+
color: var(--ronds-metadata-color-text-2) !important;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.ck .ck-on {
|
|
37
|
+
color: var(--ck-color-button-on-color) !important;
|
|
38
|
+
// background-color: blueviolet !important;
|
|
6
39
|
}
|
|
7
40
|
|
|
8
41
|
/* Make sure all content containers are distinguishable on a web page even of not focused. */
|
|
@@ -35,6 +68,7 @@
|
|
|
35
68
|
.ck-content h4,
|
|
36
69
|
.ck-content h5,
|
|
37
70
|
.ck-content h6 {
|
|
71
|
+
color: var(--ronds-metadata-color-text-2) !important;
|
|
38
72
|
margin: 42px 0 18px;
|
|
39
73
|
font-weight: 600;
|
|
40
74
|
line-height: 1.40625;
|
package/es/config.js
CHANGED
|
@@ -2,7 +2,7 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
|
2
2
|
/*
|
|
3
3
|
* @Author: wangxian
|
|
4
4
|
* @Date: 2021-09-18 14:15:04
|
|
5
|
-
* @LastEditTime: 2023-
|
|
5
|
+
* @LastEditTime: 2023-05-05 08:33:16
|
|
6
6
|
*/
|
|
7
7
|
import { BehaviorSubject, map, distinctUntilChanged } from 'rxjs';
|
|
8
8
|
import { setLocale } from './comps/locales/index';
|
|
@@ -11,7 +11,7 @@ import { localeKey } from './framework/locale';
|
|
|
11
11
|
window.jQuery = window.jQuery || jq;
|
|
12
12
|
var defaultConfig = {
|
|
13
13
|
locale: window.localStorage.getItem(localeKey) || 'zh-CN',
|
|
14
|
-
theme: '
|
|
14
|
+
theme: 'dark',
|
|
15
15
|
msgpack: false,
|
|
16
16
|
openLoading: true,
|
|
17
17
|
baseUrl: '/phm'
|