ronds-metadata 1.2.42 → 1.2.44
Sign up to get free protection for your applications and to get access to all the features.
- package/es/comps/MdEditPro/index.less +13 -0
- package/es/config.js +2 -2
- package/package.json +1 -1
@@ -1,8 +1,21 @@
|
|
1
1
|
/* ---- Cross-editor content styles. --------------------------------------------------------------- */
|
2
|
+
// .ck .ck-editor__top {
|
3
|
+
// position: fixed;
|
4
|
+
// z-index: 1000;
|
5
|
+
// }
|
6
|
+
.ck-editor {
|
7
|
+
height: 100% !important;
|
8
|
+
}
|
9
|
+
.ck .ck-editor__main {
|
10
|
+
height: calc(100% - 40px);
|
11
|
+
}
|
12
|
+
|
2
13
|
.ck.ck-content:not(.ck-style-grid__button__preview) {
|
3
14
|
/* Make sure all content containers have some min height to make them easier to locate. */
|
4
15
|
min-height: 300px;
|
16
|
+
height: 100%;
|
5
17
|
padding: 10px 20px;
|
18
|
+
overflow-y: auto;
|
6
19
|
color: var(--ronds-metadata-color-text-2) !important;
|
7
20
|
background-color: var(--ronds-metadata-color-bg-5) !important;
|
8
21
|
border: 1px solid var(--ronds-metadata-color-border-1) !important;
|
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-05-05
|
5
|
+
* @LastEditTime: 2023-05-05 11:25:35
|
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: 'normal',
|
15
15
|
msgpack: false,
|
16
16
|
openLoading: true,
|
17
17
|
baseUrl: '/phm'
|