ronds-metadata 1.2.17 → 1.2.19
Sign up to get free protection for your applications and to get access to all the features.
- package/es/comps/Editable/DataCell/Select.js +16 -2
- package/es/comps/FormGenerator/comps/Canvas/core/index.less +23 -23
- package/es/comps/JsonView/index.less +41 -41
- package/es/comps/MdView/index.less +354 -354
- package/es/comps/MetadataEdit/index.less +10 -10
- package/es/comps/MetadataEdit/type.d.ts +20 -20
- package/es/comps/MetadataForm/DataCell/Array.js +4 -1
- package/es/comps/MetadataForm/DataCell/Select.js +12 -3
- package/es/comps/MetadataForm/DataCell/layout/TableArray.js +57 -3
- package/es/comps/MetadataForm/HOC/index.less +41 -35
- package/es/framework/metadata/types.d.ts +98 -98
- package/es/theme.less +77 -77
- package/package.json +93 -93
@@ -1,10 +1,10 @@
|
|
1
|
-
.metadata-edit {
|
2
|
-
height: 100%;
|
3
|
-
width: 100%;
|
4
|
-
.ant-row {
|
5
|
-
display: block;
|
6
|
-
}
|
7
|
-
.pr-10 {
|
8
|
-
padding-right: 10px;
|
9
|
-
}
|
10
|
-
}
|
1
|
+
.metadata-edit {
|
2
|
+
height: 100%;
|
3
|
+
width: 100%;
|
4
|
+
.ant-row {
|
5
|
+
display: block;
|
6
|
+
}
|
7
|
+
.pr-10 {
|
8
|
+
padding-right: 10px;
|
9
|
+
}
|
10
|
+
}
|
@@ -1,20 +1,20 @@
|
|
1
|
-
export interface IMetaFileds {
|
2
|
-
id: string;
|
3
|
-
type: 'object';
|
4
|
-
properties: any[];
|
5
|
-
value: any;
|
6
|
-
}
|
7
|
-
|
8
|
-
export type ITypeStatus = 'object' | 'ref' | 'bool' | 'number' | 'text' | 'enum' | 'array';
|
9
|
-
|
10
|
-
export type IMetaProperty = {
|
11
|
-
/**
|
12
|
-
* 属性的名称
|
13
|
-
*/
|
14
|
-
id: string;
|
15
|
-
/**
|
16
|
-
* 类型
|
17
|
-
*/
|
18
|
-
type: string;
|
19
|
-
enum?: any[];
|
20
|
-
};
|
1
|
+
export interface IMetaFileds {
|
2
|
+
id: string;
|
3
|
+
type: 'object';
|
4
|
+
properties: any[];
|
5
|
+
value: any;
|
6
|
+
}
|
7
|
+
|
8
|
+
export type ITypeStatus = 'object' | 'ref' | 'bool' | 'number' | 'text' | 'enum' | 'array';
|
9
|
+
|
10
|
+
export type IMetaProperty = {
|
11
|
+
/**
|
12
|
+
* 属性的名称
|
13
|
+
*/
|
14
|
+
id: string;
|
15
|
+
/**
|
16
|
+
* 类型
|
17
|
+
*/
|
18
|
+
type: string;
|
19
|
+
enum?: any[];
|
20
|
+
};
|
@@ -84,7 +84,10 @@ function Index(props) {
|
|
84
84
|
background: '#fff'
|
85
85
|
}
|
86
86
|
}, help || (items === null || items === void 0 ? void 0 : items.type)))), /*#__PURE__*/React.createElement(_Col, {
|
87
|
-
flex: labelSpan && (formContext === null || formContext === void 0 ? void 0 : formContext.layout) === 'horizontal' ? "0 0 ".concat((24 - labelSpan) * 100 / 24, "%") : 1
|
87
|
+
flex: labelSpan && (formContext === null || formContext === void 0 ? void 0 : formContext.layout) === 'horizontal' ? "0 0 ".concat((24 - labelSpan) * 100 / 24, "%") : 1,
|
88
|
+
style: {
|
89
|
+
width: "".concat((24 - labelSpan) * 100 / 24, "%")
|
90
|
+
}
|
88
91
|
}, extraInfo.layout === 'table' && items.type === 'ref' ? /*#__PURE__*/React.createElement(TableArray, {
|
89
92
|
initValue: formContext.initialValues,
|
90
93
|
initEnumValue: initEnumValue,
|
@@ -34,7 +34,7 @@ import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
34
34
|
/*
|
35
35
|
* @Author:wangxian
|
36
36
|
* @Date: 2021-09-18 14:15:04
|
37
|
-
* @LastEditTime: 2023-03-
|
37
|
+
* @LastEditTime: 2023-03-07 15:10:14
|
38
38
|
*/
|
39
39
|
import React from 'react';
|
40
40
|
import { MetadataFormContext, MetadataRefContext } from '../interface';
|
@@ -433,6 +433,14 @@ function Index(props) {
|
|
433
433
|
|
434
434
|
return /*#__PURE__*/React.createElement(_TreeSelect, {
|
435
435
|
showSearch: true,
|
436
|
+
filterTreeNode: function filterTreeNode(input, treeNode) {
|
437
|
+
var _treeNode$label;
|
438
|
+
|
439
|
+
return (treeNode === null || treeNode === void 0 ? void 0 : (_treeNode$label = treeNode.label) === null || _treeNode$label === void 0 ? void 0 : _treeNode$label.toString().indexOf(input)) >= 0;
|
440
|
+
},
|
441
|
+
getPopupContainer: function getPopupContainer(triggerNode) {
|
442
|
+
return triggerNode.parentNode;
|
443
|
+
},
|
436
444
|
multiple: extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.isMutiple,
|
437
445
|
style: {
|
438
446
|
width: '100%'
|
@@ -442,9 +450,10 @@ function Index(props) {
|
|
442
450
|
overflow: 'auto'
|
443
451
|
},
|
444
452
|
treeData: treeData,
|
453
|
+
allowClear: true,
|
445
454
|
disabled: (_extraInfo$disabled2 = extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.disabled) !== null && _extraInfo$disabled2 !== void 0 ? _extraInfo$disabled2 : disabled,
|
446
|
-
placeholder: extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.placeholder
|
447
|
-
|
455
|
+
placeholder: extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.placeholder // treeDefaultExpandAll
|
456
|
+
,
|
448
457
|
maxTagCount: extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.maxTagCount,
|
449
458
|
maxTagTextLength: extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.maxTagTextLength,
|
450
459
|
maxTagPlaceholder: "..."
|
@@ -204,8 +204,54 @@ var TableArray = function TableArray(props) {
|
|
204
204
|
firstLoadRef.current = false;
|
205
205
|
}
|
206
206
|
}, [initValue, form]);
|
207
|
+
var getEnumDataByUrl = React.useCallback( /*#__PURE__*/function () {
|
208
|
+
var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2(http) {
|
209
|
+
var server, _url, res, _res;
|
210
|
+
|
211
|
+
return _regeneratorRuntime.wrap(function _callee2$(_context2) {
|
212
|
+
while (1) {
|
213
|
+
switch (_context2.prev = _context2.next) {
|
214
|
+
case 0:
|
215
|
+
server = new MetadataService();
|
216
|
+
_url = http.url;
|
217
|
+
_context2.next = 4;
|
218
|
+
return server.GetEnumDataByUrl(_url, http.method, (http === null || http === void 0 ? void 0 : http.body) && JSON.parse(http === null || http === void 0 ? void 0 : http.body));
|
219
|
+
|
220
|
+
case 4:
|
221
|
+
res = _context2.sent;
|
222
|
+
_res = (res === null || res === void 0 ? void 0 : res.total) ? res === null || res === void 0 ? void 0 : res.list : res;
|
223
|
+
|
224
|
+
if (!(_res && _res.length > 0)) {
|
225
|
+
_context2.next = 10;
|
226
|
+
break;
|
227
|
+
}
|
228
|
+
|
229
|
+
return _context2.abrupt("return", _res.map(function (it) {
|
230
|
+
return {
|
231
|
+
value: it[(http === null || http === void 0 ? void 0 : http.key) || 'id'],
|
232
|
+
label: it[(http === null || http === void 0 ? void 0 : http.value) || 'name'],
|
233
|
+
disabled: false
|
234
|
+
};
|
235
|
+
}));
|
236
|
+
|
237
|
+
case 10:
|
238
|
+
console.warn("".concat(_url, " is not return success result"));
|
239
|
+
return _context2.abrupt("return", []);
|
240
|
+
|
241
|
+
case 12:
|
242
|
+
case "end":
|
243
|
+
return _context2.stop();
|
244
|
+
}
|
245
|
+
}
|
246
|
+
}, _callee2);
|
247
|
+
}));
|
248
|
+
|
249
|
+
return function (_x3) {
|
250
|
+
return _ref2.apply(this, arguments);
|
251
|
+
};
|
252
|
+
}(), []);
|
207
253
|
var processEnumData = React.useCallback(function (data, _extraInfo) {
|
208
|
-
var _extraInfo$enum;
|
254
|
+
var _extraInfo$enum, _extraInfo$enum3;
|
209
255
|
|
210
256
|
var _options = [];
|
211
257
|
|
@@ -216,6 +262,13 @@ var TableArray = function TableArray(props) {
|
|
216
262
|
var _extraInfo$enum2;
|
217
263
|
|
218
264
|
_enum = deepClone(_extraInfo === null || _extraInfo === void 0 ? void 0 : (_extraInfo$enum2 = _extraInfo.enum) === null || _extraInfo$enum2 === void 0 ? void 0 : _extraInfo$enum2.value);
|
265
|
+
} // 从接口拿数据
|
266
|
+
|
267
|
+
|
268
|
+
if (_extraInfo === null || _extraInfo === void 0 ? void 0 : (_extraInfo$enum3 = _extraInfo.enum) === null || _extraInfo$enum3 === void 0 ? void 0 : _extraInfo$enum3.http) {
|
269
|
+
var _extraInfo$enum4;
|
270
|
+
|
271
|
+
return getEnumDataByUrl(deepClone(_extraInfo === null || _extraInfo === void 0 ? void 0 : (_extraInfo$enum4 = _extraInfo.enum) === null || _extraInfo$enum4 === void 0 ? void 0 : _extraInfo$enum4.http));
|
219
272
|
} // 目前是更具那么的id判断的,暂未考虑重名问题
|
220
273
|
|
221
274
|
|
@@ -249,7 +302,7 @@ var TableArray = function TableArray(props) {
|
|
249
302
|
var _columns = [];
|
250
303
|
|
251
304
|
for (var i = 0; i < _properties.length; i++) {
|
252
|
-
var _extraInfo$common;
|
305
|
+
var _extraInfo$common, _extraInfo$enum5;
|
253
306
|
|
254
307
|
var it = _properties[i];
|
255
308
|
var extraInfo = refFieldsRef.current.get(it.id);
|
@@ -260,7 +313,8 @@ var TableArray = function TableArray(props) {
|
|
260
313
|
width: processColumnType(it, extraInfo) === 'buttonCell' ? 25 : 50,
|
261
314
|
editable: !(extraInfo === null || extraInfo === void 0 ? void 0 : (_extraInfo$common = extraInfo.common) === null || _extraInfo$common === void 0 ? void 0 : _extraInfo$common.disabled),
|
262
315
|
type: processColumnType(it, extraInfo),
|
263
|
-
enum: it.type === 'enum' ? processEnumData(it, extraInfo) : undefined
|
316
|
+
enum: it.type === 'enum' ? processEnumData(it, extraInfo) : undefined,
|
317
|
+
mode: (extraInfo === null || extraInfo === void 0 ? void 0 : (_extraInfo$enum5 = extraInfo.enum) === null || _extraInfo$enum5 === void 0 ? void 0 : _extraInfo$enum5.isMutiple) ? 'multiple' : undefined
|
264
318
|
};
|
265
319
|
|
266
320
|
_columns.push(obj);
|
@@ -1,35 +1,41 @@
|
|
1
|
-
.with-add-on-after {
|
2
|
-
--card-bg: #ffffff;
|
3
|
-
position: relative;
|
4
|
-
width: 100%;
|
5
|
-
|
6
|
-
.ant-form-item-label {
|
7
|
-
padding: 0 !important;
|
8
|
-
}
|
9
|
-
|
10
|
-
& > .ant-form-item {
|
11
|
-
padding: 0 0 8px !important;
|
12
|
-
flex: 1;
|
13
|
-
}
|
14
|
-
&-extra {
|
15
|
-
position: absolute;
|
16
|
-
right: 20px;
|
17
|
-
top: 18px;
|
18
|
-
padding: 0 6px;
|
19
|
-
background-color: var(--card-bg);
|
20
|
-
z-index: 1000;
|
21
|
-
}
|
22
|
-
&-ref {
|
23
|
-
position: absolute;
|
24
|
-
right: 20px;
|
25
|
-
top: -10px;
|
26
|
-
padding: 0 6px;
|
27
|
-
background-color: var(--card-bg);
|
28
|
-
z-index: 1000;
|
29
|
-
}
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
}
|
35
|
-
|
1
|
+
.with-add-on-after {
|
2
|
+
--card-bg: #ffffff;
|
3
|
+
position: relative;
|
4
|
+
width: 100%;
|
5
|
+
|
6
|
+
.ant-form-item-label {
|
7
|
+
padding: 0 !important;
|
8
|
+
}
|
9
|
+
|
10
|
+
& > .ant-form-item {
|
11
|
+
padding: 0 0 8px !important;
|
12
|
+
flex: 1;
|
13
|
+
}
|
14
|
+
&-extra {
|
15
|
+
position: absolute;
|
16
|
+
right: 20px;
|
17
|
+
top: 18px;
|
18
|
+
padding: 0 6px;
|
19
|
+
background-color: var(--card-bg);
|
20
|
+
z-index: 1000;
|
21
|
+
}
|
22
|
+
&-ref {
|
23
|
+
position: absolute;
|
24
|
+
right: 20px;
|
25
|
+
top: -10px;
|
26
|
+
padding: 0 6px;
|
27
|
+
background-color: var(--card-bg);
|
28
|
+
z-index: 1000;
|
29
|
+
}
|
30
|
+
.ant-select-tree-indent {
|
31
|
+
.ant-select-tree-indent-unit {
|
32
|
+
width: 10px !important;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
/* .ant-col-2.7 {
|
37
|
+
display: block;
|
38
|
+
flex: 0 0 75%;
|
39
|
+
max-width: 75%;
|
40
|
+
} */
|
41
|
+
}
|
@@ -1,98 +1,98 @@
|
|
1
|
-
/*
|
2
|
-
* @Author: wangxian
|
3
|
-
* @Date: 2021-09-18 14:15:04
|
4
|
-
* @LastEditTime: 2023-02-09 18:37:15
|
5
|
-
*/
|
6
|
-
export type IMetaType = 'object' | 'ref' | 'bool' | 'number' | 'text' | 'enum' | 'array' | string;
|
7
|
-
|
8
|
-
export type IMetaData = {
|
9
|
-
/**
|
10
|
-
* 类名称/属性名称
|
11
|
-
*/
|
12
|
-
id: string;
|
13
|
-
/**
|
14
|
-
* 类型
|
15
|
-
*/
|
16
|
-
type: IMetaType;
|
17
|
-
/**
|
18
|
-
* 属性
|
19
|
-
*/
|
20
|
-
properties?: IMetaProperties[];
|
21
|
-
|
22
|
-
/**
|
23
|
-
* 引用id
|
24
|
-
*/
|
25
|
-
refId?: string;
|
26
|
-
/**
|
27
|
-
* 静态的变量
|
28
|
-
*/
|
29
|
-
fields?: IMetaFileds[];
|
30
|
-
/**
|
31
|
-
* 内部类
|
32
|
-
*/
|
33
|
-
types?: IMetaData[];
|
34
|
-
};
|
35
|
-
|
36
|
-
export type IMetaProperties = {
|
37
|
-
/**
|
38
|
-
* 类规则名称
|
39
|
-
*/
|
40
|
-
id: string;
|
41
|
-
|
42
|
-
/**
|
43
|
-
* 类型
|
44
|
-
*/
|
45
|
-
type: IMetaType;
|
46
|
-
|
47
|
-
/**
|
48
|
-
* 引用id
|
49
|
-
*/
|
50
|
-
refId?: string;
|
51
|
-
/**
|
52
|
-
* 静态的变量
|
53
|
-
*/
|
54
|
-
fields?: IMetaFileds[];
|
55
|
-
/**
|
56
|
-
* 枚举值
|
57
|
-
*/
|
58
|
-
enum?: { value: string }[];
|
59
|
-
/**
|
60
|
-
* 数组类型
|
61
|
-
*/
|
62
|
-
items?: { type: IMetaType; refId?: string };
|
63
|
-
};
|
64
|
-
|
65
|
-
export type IMetaFileds = {
|
66
|
-
/**
|
67
|
-
* 规则名称
|
68
|
-
*/
|
69
|
-
id: string;
|
70
|
-
|
71
|
-
/**
|
72
|
-
* 类型
|
73
|
-
*/
|
74
|
-
type: IMetaType;
|
75
|
-
|
76
|
-
/**
|
77
|
-
* 引用id
|
78
|
-
*/
|
79
|
-
refId?: string;
|
80
|
-
|
81
|
-
/**
|
82
|
-
* 规则值
|
83
|
-
*/
|
84
|
-
value: any;
|
85
|
-
};
|
86
|
-
|
87
|
-
export interface IAPI {
|
88
|
-
// 获取元数据列表
|
89
|
-
GetMetadataList(keyWords?: string[]): Promise<{ id: string; name: string; schema: string }[]>;
|
90
|
-
// 通过元数据Id获取元数据详情
|
91
|
-
GetMetadataDetailById(metadataId: string): Promise<any>;
|
92
|
-
// 新增元数据
|
93
|
-
SaveMetadata(data: any, metadataTag: string): Promise<any>;
|
94
|
-
// 获取元数据的值
|
95
|
-
GetMetadataObjList(data: any): Promise<any[]>;
|
96
|
-
/** 通过扩展规则获取枚举类型的值 */
|
97
|
-
GetEnumDataByUrl(url: string, method: 'get' | 'post', body: any): Promise<any>;
|
98
|
-
}
|
1
|
+
/*
|
2
|
+
* @Author: wangxian
|
3
|
+
* @Date: 2021-09-18 14:15:04
|
4
|
+
* @LastEditTime: 2023-02-09 18:37:15
|
5
|
+
*/
|
6
|
+
export type IMetaType = 'object' | 'ref' | 'bool' | 'number' | 'text' | 'enum' | 'array' | string;
|
7
|
+
|
8
|
+
export type IMetaData = {
|
9
|
+
/**
|
10
|
+
* 类名称/属性名称
|
11
|
+
*/
|
12
|
+
id: string;
|
13
|
+
/**
|
14
|
+
* 类型
|
15
|
+
*/
|
16
|
+
type: IMetaType;
|
17
|
+
/**
|
18
|
+
* 属性
|
19
|
+
*/
|
20
|
+
properties?: IMetaProperties[];
|
21
|
+
|
22
|
+
/**
|
23
|
+
* 引用id
|
24
|
+
*/
|
25
|
+
refId?: string;
|
26
|
+
/**
|
27
|
+
* 静态的变量
|
28
|
+
*/
|
29
|
+
fields?: IMetaFileds[];
|
30
|
+
/**
|
31
|
+
* 内部类
|
32
|
+
*/
|
33
|
+
types?: IMetaData[];
|
34
|
+
};
|
35
|
+
|
36
|
+
export type IMetaProperties = {
|
37
|
+
/**
|
38
|
+
* 类规则名称
|
39
|
+
*/
|
40
|
+
id: string;
|
41
|
+
|
42
|
+
/**
|
43
|
+
* 类型
|
44
|
+
*/
|
45
|
+
type: IMetaType;
|
46
|
+
|
47
|
+
/**
|
48
|
+
* 引用id
|
49
|
+
*/
|
50
|
+
refId?: string;
|
51
|
+
/**
|
52
|
+
* 静态的变量
|
53
|
+
*/
|
54
|
+
fields?: IMetaFileds[];
|
55
|
+
/**
|
56
|
+
* 枚举值
|
57
|
+
*/
|
58
|
+
enum?: { value: string }[];
|
59
|
+
/**
|
60
|
+
* 数组类型
|
61
|
+
*/
|
62
|
+
items?: { type: IMetaType; refId?: string };
|
63
|
+
};
|
64
|
+
|
65
|
+
export type IMetaFileds = {
|
66
|
+
/**
|
67
|
+
* 规则名称
|
68
|
+
*/
|
69
|
+
id: string;
|
70
|
+
|
71
|
+
/**
|
72
|
+
* 类型
|
73
|
+
*/
|
74
|
+
type: IMetaType;
|
75
|
+
|
76
|
+
/**
|
77
|
+
* 引用id
|
78
|
+
*/
|
79
|
+
refId?: string;
|
80
|
+
|
81
|
+
/**
|
82
|
+
* 规则值
|
83
|
+
*/
|
84
|
+
value: any;
|
85
|
+
};
|
86
|
+
|
87
|
+
export interface IAPI {
|
88
|
+
// 获取元数据列表
|
89
|
+
GetMetadataList(keyWords?: string[]): Promise<{ id: string; name: string; schema: string }[]>;
|
90
|
+
// 通过元数据Id获取元数据详情
|
91
|
+
GetMetadataDetailById(metadataId: string): Promise<any>;
|
92
|
+
// 新增元数据
|
93
|
+
SaveMetadata(data: any, metadataTag: string): Promise<any>;
|
94
|
+
// 获取元数据的值
|
95
|
+
GetMetadataObjList(data: any): Promise<any[]>;
|
96
|
+
/** 通过扩展规则获取枚举类型的值 */
|
97
|
+
GetEnumDataByUrl(url: string, method: 'get' | 'post', body: any): Promise<any>;
|
98
|
+
}
|
package/es/theme.less
CHANGED
@@ -1,77 +1,77 @@
|
|
1
|
-
.ronds-metadata-dark {
|
2
|
-
--ronds-metadata-color-border-1: #314162;
|
3
|
-
--ronds-metadata-color-border-2: #0d9af3;
|
4
|
-
--ronds-metadata-color-bg-2: #0d1f40;
|
5
|
-
--ronds-metadata-color-bg-3: #0d1f40;
|
6
|
-
--ronds-metadata-color-bg-4: #1c3771;
|
7
|
-
--ronds-metadata-color-text-1: #ffffff;
|
8
|
-
--ronds-metadata-color-text-2: #ffffff;
|
9
|
-
--ronds-metadata-color-text-3: #ffffff;
|
10
|
-
|
11
|
-
::-webkit-scrollbar {
|
12
|
-
width: 6px;
|
13
|
-
height: 6px;
|
14
|
-
overflow: auto;
|
15
|
-
}
|
16
|
-
::-webkit-scrollbar-corner {
|
17
|
-
background-color: transparent;
|
18
|
-
color: transparent;
|
19
|
-
}
|
20
|
-
|
21
|
-
::-webkit-scrollbar-thumb {
|
22
|
-
box-shadow: inset 0 0 5px var(--scrollbar-bg-color);
|
23
|
-
background: var(--scrollbar-color);
|
24
|
-
min-height: 25px;
|
25
|
-
min-width: 25px;
|
26
|
-
border-radius: 3px;
|
27
|
-
|
28
|
-
&:hover {
|
29
|
-
border-radius: 2px;
|
30
|
-
// box-shadow: inset 0 0 5px var(--scrollbar-color-hover);
|
31
|
-
background: var(--scrollbar-color-hover);
|
32
|
-
}
|
33
|
-
|
34
|
-
&:active {
|
35
|
-
// box-shadow: inset 0 0 5px var(--scrollbar-bg-color);
|
36
|
-
background: var(--scrollbar-color-hover);
|
37
|
-
}
|
38
|
-
}
|
39
|
-
}
|
40
|
-
|
41
|
-
.ronds-metadata-normal {
|
42
|
-
--ronds-metadata-color-border-1: #d9d9d9;
|
43
|
-
--ronds-metadata-color-border-2: #165dff;
|
44
|
-
--ronds-metadata-color-bg-2: rgba(229, 238, 255, 0.85);
|
45
|
-
--ronds-metadata-color-bg-3: #f6f5f6;
|
46
|
-
--ronds-metadata-color-bg-4: #ffffff;
|
47
|
-
--ronds-metadata-color-text-1: #1d2129;
|
48
|
-
--ronds-metadata-color-text-2: #24292f;
|
49
|
-
--ronds-metadata-color-text-3: #f2f3f5;
|
50
|
-
|
51
|
-
::-webkit-scrollbar {
|
52
|
-
width: 6px;
|
53
|
-
height: 6px;
|
54
|
-
overflow: auto;
|
55
|
-
}
|
56
|
-
|
57
|
-
::-webkit-scrollbar-thumb {
|
58
|
-
background-color: var(--scrollbar-color);
|
59
|
-
min-height: 25px;
|
60
|
-
min-width: 25px;
|
61
|
-
border-radius: 3px;
|
62
|
-
|
63
|
-
&:hover {
|
64
|
-
background-color: #a8a8a8;
|
65
|
-
}
|
66
|
-
|
67
|
-
&:active {
|
68
|
-
background-color: #787878;
|
69
|
-
}
|
70
|
-
|
71
|
-
/* border: 1px solid #e0e0e0; */
|
72
|
-
}
|
73
|
-
|
74
|
-
::-webkit-scrollbar-track {
|
75
|
-
background-color: #f7f7f7;
|
76
|
-
}
|
77
|
-
}
|
1
|
+
.ronds-metadata-dark {
|
2
|
+
--ronds-metadata-color-border-1: #314162;
|
3
|
+
--ronds-metadata-color-border-2: #0d9af3;
|
4
|
+
--ronds-metadata-color-bg-2: #0d1f40;
|
5
|
+
--ronds-metadata-color-bg-3: #0d1f40;
|
6
|
+
--ronds-metadata-color-bg-4: #1c3771;
|
7
|
+
--ronds-metadata-color-text-1: #ffffff;
|
8
|
+
--ronds-metadata-color-text-2: #ffffff;
|
9
|
+
--ronds-metadata-color-text-3: #ffffff;
|
10
|
+
|
11
|
+
::-webkit-scrollbar {
|
12
|
+
width: 6px;
|
13
|
+
height: 6px;
|
14
|
+
overflow: auto;
|
15
|
+
}
|
16
|
+
::-webkit-scrollbar-corner {
|
17
|
+
background-color: transparent;
|
18
|
+
color: transparent;
|
19
|
+
}
|
20
|
+
|
21
|
+
::-webkit-scrollbar-thumb {
|
22
|
+
box-shadow: inset 0 0 5px var(--scrollbar-bg-color);
|
23
|
+
background: var(--scrollbar-color);
|
24
|
+
min-height: 25px;
|
25
|
+
min-width: 25px;
|
26
|
+
border-radius: 3px;
|
27
|
+
|
28
|
+
&:hover {
|
29
|
+
border-radius: 2px;
|
30
|
+
// box-shadow: inset 0 0 5px var(--scrollbar-color-hover);
|
31
|
+
background: var(--scrollbar-color-hover);
|
32
|
+
}
|
33
|
+
|
34
|
+
&:active {
|
35
|
+
// box-shadow: inset 0 0 5px var(--scrollbar-bg-color);
|
36
|
+
background: var(--scrollbar-color-hover);
|
37
|
+
}
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
.ronds-metadata-normal {
|
42
|
+
--ronds-metadata-color-border-1: #d9d9d9;
|
43
|
+
--ronds-metadata-color-border-2: #165dff;
|
44
|
+
--ronds-metadata-color-bg-2: rgba(229, 238, 255, 0.85);
|
45
|
+
--ronds-metadata-color-bg-3: #f6f5f6;
|
46
|
+
--ronds-metadata-color-bg-4: #ffffff;
|
47
|
+
--ronds-metadata-color-text-1: #1d2129;
|
48
|
+
--ronds-metadata-color-text-2: #24292f;
|
49
|
+
--ronds-metadata-color-text-3: #f2f3f5;
|
50
|
+
|
51
|
+
::-webkit-scrollbar {
|
52
|
+
width: 6px;
|
53
|
+
height: 6px;
|
54
|
+
overflow: auto;
|
55
|
+
}
|
56
|
+
|
57
|
+
::-webkit-scrollbar-thumb {
|
58
|
+
background-color: var(--scrollbar-color);
|
59
|
+
min-height: 25px;
|
60
|
+
min-width: 25px;
|
61
|
+
border-radius: 3px;
|
62
|
+
|
63
|
+
&:hover {
|
64
|
+
background-color: #a8a8a8;
|
65
|
+
}
|
66
|
+
|
67
|
+
&:active {
|
68
|
+
background-color: #787878;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* border: 1px solid #e0e0e0; */
|
72
|
+
}
|
73
|
+
|
74
|
+
::-webkit-scrollbar-track {
|
75
|
+
background-color: #f7f7f7;
|
76
|
+
}
|
77
|
+
}
|