ronds-metadata 1.1.9 → 1.1.10
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/DynamicPorts/index.css +7 -5
- package/es/config.js +1 -1
- package/es/theme.css +6 -0
- package/package.json +1 -1
@@ -5,13 +5,15 @@
|
|
5
5
|
width: 180px;
|
6
6
|
height: 32px;
|
7
7
|
overflow: hidden;
|
8
|
-
background-color:
|
8
|
+
background-color: var(--ronds-metadata-color-bg-4);
|
9
|
+
color: var(--ronds-metadata-color-text-1);
|
9
10
|
border-radius: 4px;
|
10
11
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
|
11
12
|
}
|
12
13
|
.node-element.selected,
|
13
14
|
.node-element:hover {
|
14
|
-
background-color:
|
15
|
+
background-color: var(--ronds-metadata-color-bg-4);
|
16
|
+
color: var(--ronds-metadata-color-text-1);
|
15
17
|
border: 1px solid #1890ff;
|
16
18
|
box-shadow: 0 0 3px 3px rgba(64, 169, 255, 0.2);
|
17
19
|
}
|
@@ -31,7 +33,7 @@
|
|
31
33
|
justify-content: center;
|
32
34
|
width: 32px;
|
33
35
|
height: 32px;
|
34
|
-
background-color:
|
36
|
+
background-color: var(--ronds-metadata-color-bg-2);
|
35
37
|
border-radius: 4px 0 0 4px;
|
36
38
|
}
|
37
39
|
.node-element .notation {
|
@@ -46,7 +48,7 @@
|
|
46
48
|
}
|
47
49
|
.node-element .notation .name {
|
48
50
|
overflow-x: hidden;
|
49
|
-
color:
|
51
|
+
color: var(--ronds-metadata-color-text-1);
|
50
52
|
font-size: 12px;
|
51
53
|
white-space: nowrap;
|
52
54
|
text-overflow: ellipsis;
|
@@ -77,7 +79,7 @@
|
|
77
79
|
display: block;
|
78
80
|
}
|
79
81
|
.dynamic-ports .x6-node-selected .node-element {
|
80
|
-
background-color:
|
82
|
+
background-color: var(--ronds-metadata-color-bg-4);
|
81
83
|
border: 1px solid #1890ff;
|
82
84
|
box-shadow: 0 0 3px 3px rgba(64, 169, 255, 0.2);
|
83
85
|
}
|
package/es/config.js
CHANGED
@@ -3,7 +3,7 @@ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
3
3
|
/*
|
4
4
|
* @Author: wangxian
|
5
5
|
* @Date: 2021-09-18 14:15:04
|
6
|
-
* @LastEditTime: 2022-05-
|
6
|
+
* @LastEditTime: 2022-05-30 08:43:00
|
7
7
|
*/
|
8
8
|
import { BehaviorSubject } from 'rxjs/internal/BehaviorSubject';
|
9
9
|
import { distinctUntilChanged } from 'rxjs/internal/operators/distinctUntilChanged';
|
package/es/theme.css
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
.ronds-metadata-dark {
|
2
2
|
--ronds-metadata-color-border-1: #314162;
|
3
|
+
--ronds-metadata-color-bg-2: #0d1f40;
|
4
|
+
--ronds-metadata-color-bg-4: #1c3771;
|
5
|
+
--ronds-metadata-color-text-1: #ffffff;
|
3
6
|
}
|
4
7
|
.ronds-metadata-dark ::-webkit-scrollbar {
|
5
8
|
width: 6px;
|
@@ -26,6 +29,9 @@
|
|
26
29
|
}
|
27
30
|
.ronds-metadata-normal {
|
28
31
|
--ronds-metadata-color-border-1: #d9d9d9;
|
32
|
+
--ronds-metadata-color-bg-2: rgba(229, 238, 255, 0.85);
|
33
|
+
--ronds-metadata-color-bg-4: #ffffff;
|
34
|
+
--ronds-metadata-color-text-1: #1d2129;
|
29
35
|
}
|
30
36
|
.ronds-metadata-normal ::-webkit-scrollbar {
|
31
37
|
width: 6px;
|