xframelib 0.4.7 → 0.4.8
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 +1 -0
- package/dist/index.cjs +3 -3
- package/dist/index.css +66 -66
- package/dist/index.js +3 -3
- package/dist/model/Token.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -108,6 +108,37 @@
|
|
|
108
108
|
margin-top: 1px;
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
+
.vcpg {
|
|
112
|
+
border: 1px solid var(--border-color);
|
|
113
|
+
border-radius: 4px;
|
|
114
|
+
width: 100%;
|
|
115
|
+
}
|
|
116
|
+
.vcpg ::v-deep(.vcp) * {
|
|
117
|
+
box-sizing: border-box;
|
|
118
|
+
}
|
|
119
|
+
.vcpg ::v-deep(.vcp) .vcp__header {
|
|
120
|
+
background-color: var(--bg-color-header);
|
|
121
|
+
height: 30px;
|
|
122
|
+
border-bottom: 2px solid #c6bebd;
|
|
123
|
+
transition: background-color 0.3s ease;
|
|
124
|
+
}
|
|
125
|
+
.vcpg ::v-deep(.vcp) .vcp__header .vcp__header:hover {
|
|
126
|
+
background-color: var(--bg-color-header-hover);
|
|
127
|
+
}
|
|
128
|
+
.vcpg ::v-deep(.vcp) .vcp__header .vcp__header:active {
|
|
129
|
+
background-color: var(--bg-color-header-active);
|
|
130
|
+
}
|
|
131
|
+
.vcpg ::v-deep(.vcp) .vcp:not(:first-of-type) .vcp__header {
|
|
132
|
+
border-top: 2px solid var(--border-color);
|
|
133
|
+
}
|
|
134
|
+
.vcpg ::v-deep(.vcp) .vcp__header-title {
|
|
135
|
+
font-weight: 500;
|
|
136
|
+
}
|
|
137
|
+
.vcpg ::v-deep(.vcp) .vcp__body {
|
|
138
|
+
border-top: 1px solid var(--border-color);
|
|
139
|
+
background-color: var(--bg-color-body);
|
|
140
|
+
}
|
|
141
|
+
|
|
111
142
|
.vcp__header {
|
|
112
143
|
display: flex;
|
|
113
144
|
padding: 12px;
|
|
@@ -153,35 +184,47 @@
|
|
|
153
184
|
opacity: 0.25;
|
|
154
185
|
}
|
|
155
186
|
|
|
156
|
-
.
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
.vcpg ::v-deep(.vcp) * {
|
|
162
|
-
box-sizing: border-box;
|
|
187
|
+
.window {
|
|
188
|
+
display: flex;
|
|
189
|
+
flex-flow: column;
|
|
190
|
+
position: absolute;
|
|
191
|
+
border-radius: 4pt 4pt 0 0;
|
|
163
192
|
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
193
|
+
|
|
194
|
+
.titlebar {
|
|
195
|
+
display: flex;
|
|
196
|
+
flex-flow: row nowrap;
|
|
197
|
+
border-radius: 4pt 4pt 0 0;
|
|
198
|
+
font-family: sans-serif;
|
|
199
|
+
padding: 0.5em;
|
|
200
|
+
flex: 0 0 auto;
|
|
169
201
|
}
|
|
170
|
-
|
|
171
|
-
|
|
202
|
+
|
|
203
|
+
.title {
|
|
204
|
+
flex-grow: 1;
|
|
205
|
+
white-space: nowrap;
|
|
206
|
+
overflow: hidden;
|
|
207
|
+
text-overflow: ellipsis;
|
|
172
208
|
}
|
|
173
|
-
|
|
174
|
-
|
|
209
|
+
|
|
210
|
+
.content {
|
|
211
|
+
flex-grow: 1;
|
|
212
|
+
padding: 0.5em;
|
|
175
213
|
}
|
|
176
|
-
|
|
177
|
-
|
|
214
|
+
|
|
215
|
+
.draggable-handle {
|
|
216
|
+
cursor: move;
|
|
178
217
|
}
|
|
179
|
-
|
|
180
|
-
|
|
218
|
+
|
|
219
|
+
.fade-enter,
|
|
220
|
+
.fade-leave-to {
|
|
221
|
+
opacity: 0;
|
|
222
|
+
transform: scale(0.9);
|
|
181
223
|
}
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
224
|
+
|
|
225
|
+
.fade-enter-active,
|
|
226
|
+
.fade-leave-active {
|
|
227
|
+
transition: 0.2s;
|
|
185
228
|
}
|
|
186
229
|
|
|
187
230
|
.layoutContainer {
|
|
@@ -253,49 +296,6 @@
|
|
|
253
296
|
pointer-events: none;
|
|
254
297
|
}
|
|
255
298
|
|
|
256
|
-
.window {
|
|
257
|
-
display: flex;
|
|
258
|
-
flex-flow: column;
|
|
259
|
-
position: absolute;
|
|
260
|
-
border-radius: 4pt 4pt 0 0;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.titlebar {
|
|
264
|
-
display: flex;
|
|
265
|
-
flex-flow: row nowrap;
|
|
266
|
-
border-radius: 4pt 4pt 0 0;
|
|
267
|
-
font-family: sans-serif;
|
|
268
|
-
padding: 0.5em;
|
|
269
|
-
flex: 0 0 auto;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
.title {
|
|
273
|
-
flex-grow: 1;
|
|
274
|
-
white-space: nowrap;
|
|
275
|
-
overflow: hidden;
|
|
276
|
-
text-overflow: ellipsis;
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
.content {
|
|
280
|
-
flex-grow: 1;
|
|
281
|
-
padding: 0.5em;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
.draggable-handle {
|
|
285
|
-
cursor: move;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
.fade-enter,
|
|
289
|
-
.fade-leave-to {
|
|
290
|
-
opacity: 0;
|
|
291
|
-
transform: scale(0.9);
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
.fade-enter-active,
|
|
295
|
-
.fade-leave-active {
|
|
296
|
-
transition: 0.2s;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
299
|
.btn {
|
|
300
300
|
background-color: transparent;
|
|
301
301
|
border: none;
|