xframelib 0.9.3 → 0.9.5
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/README.md +3 -1
- package/dist/core/IModel.d.ts +4 -0
- package/dist/index.cjs +3 -15
- package/dist/index.css +44 -44
- package/dist/index.js +3 -15
- package/dist/model/Config.d.ts +5 -0
- package/dist/utils/TokenHelper.d.ts +3 -0
- package/package.json +8 -7
package/dist/index.css
CHANGED
|
@@ -1,46 +1,3 @@
|
|
|
1
|
-
.window {
|
|
2
|
-
display: flex;
|
|
3
|
-
flex-flow: column;
|
|
4
|
-
position: absolute;
|
|
5
|
-
border-radius: 4pt 4pt 0 0;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.titlebar {
|
|
9
|
-
display: flex;
|
|
10
|
-
flex-flow: row nowrap;
|
|
11
|
-
border-radius: 4pt 4pt 0 0;
|
|
12
|
-
font-family: sans-serif;
|
|
13
|
-
padding: 0.5em;
|
|
14
|
-
flex: 0 0 auto;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.title {
|
|
18
|
-
flex-grow: 1;
|
|
19
|
-
white-space: nowrap;
|
|
20
|
-
overflow: hidden;
|
|
21
|
-
text-overflow: ellipsis;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.content {
|
|
25
|
-
flex-grow: 1;
|
|
26
|
-
padding: 0.5em;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.draggable-handle {
|
|
30
|
-
cursor: move;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.fade-enter,
|
|
34
|
-
.fade-leave-to {
|
|
35
|
-
opacity: 0;
|
|
36
|
-
transform: scale(0.9);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.fade-enter-active,
|
|
40
|
-
.fade-leave-active {
|
|
41
|
-
transition: 0.2s;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
1
|
.layoutContainer {
|
|
45
2
|
position: relative;
|
|
46
3
|
width: 100%;
|
|
@@ -139,6 +96,49 @@
|
|
|
139
96
|
z-index: var(--layout-centerfront-zindex);
|
|
140
97
|
}
|
|
141
98
|
|
|
99
|
+
.window {
|
|
100
|
+
display: flex;
|
|
101
|
+
flex-flow: column;
|
|
102
|
+
position: absolute;
|
|
103
|
+
border-radius: 4pt 4pt 0 0;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.titlebar {
|
|
107
|
+
display: flex;
|
|
108
|
+
flex-flow: row nowrap;
|
|
109
|
+
border-radius: 4pt 4pt 0 0;
|
|
110
|
+
font-family: sans-serif;
|
|
111
|
+
padding: 0.5em;
|
|
112
|
+
flex: 0 0 auto;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.title {
|
|
116
|
+
flex-grow: 1;
|
|
117
|
+
white-space: nowrap;
|
|
118
|
+
overflow: hidden;
|
|
119
|
+
text-overflow: ellipsis;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.content {
|
|
123
|
+
flex-grow: 1;
|
|
124
|
+
padding: 0.5em;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.draggable-handle {
|
|
128
|
+
cursor: move;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.fade-enter,
|
|
132
|
+
.fade-leave-to {
|
|
133
|
+
opacity: 0;
|
|
134
|
+
transform: scale(0.9);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.fade-enter-active,
|
|
138
|
+
.fade-leave-active {
|
|
139
|
+
transition: 0.2s;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
142
|
.adivider {
|
|
143
143
|
width: 100%;
|
|
144
144
|
margin: 10px 0;
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
justify-items: center;
|
|
148
148
|
}
|
|
149
149
|
.adivider .line {
|
|
150
|
-
border:
|
|
150
|
+
border: v-bind(lineColor) 1px solid;
|
|
151
151
|
}
|
|
152
152
|
.adivider .contentText {
|
|
153
153
|
background-color: inherit;
|