xframelib 0.9.7 → 0.9.9

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/dist/index.css CHANGED
@@ -130,23 +130,6 @@
130
130
  margin-top: 1px;
131
131
  }
132
132
 
133
- .adivider {
134
- width: 100%;
135
- margin: 10px 0;
136
- display: flex;
137
- align-items: center;
138
- justify-items: center;
139
- }
140
-
141
- .adivider .line {
142
- border: v-bind(lineColor) 1px solid;
143
- }
144
-
145
- .adivider .contentText {
146
- background-color: inherit;
147
- font-size: 18px;
148
- }
149
-
150
133
  .layoutContainer {
151
134
  position: relative;
152
135
  width: 100%;
@@ -253,6 +236,66 @@
253
236
  z-index: var(--layout-centerfront-zindex);
254
237
  }
255
238
 
239
+ .adivider {
240
+ width: 100%;
241
+ margin: 10px 0;
242
+ display: flex;
243
+ align-items: center;
244
+ justify-items: center;
245
+ }
246
+
247
+ .adivider .line {
248
+ border: v-bind(lineColor) 1px solid;
249
+ }
250
+
251
+ .adivider .contentText {
252
+ background-color: inherit;
253
+ font-size: 18px;
254
+ }
255
+
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
+
256
299
  .iconify {
257
300
  color: #000;
258
301
  }
@@ -407,49 +450,6 @@
407
450
  cursor: s-resize;
408
451
  }
409
452
 
410
- .window {
411
- display: flex;
412
- flex-flow: column;
413
- position: absolute;
414
- border-radius: 4pt 4pt 0 0;
415
- }
416
-
417
- .titlebar {
418
- display: flex;
419
- flex-flow: row nowrap;
420
- border-radius: 4pt 4pt 0 0;
421
- font-family: sans-serif;
422
- padding: 0.5em;
423
- flex: 0 0 auto;
424
- }
425
-
426
- .title {
427
- flex-grow: 1;
428
- white-space: nowrap;
429
- overflow: hidden;
430
- text-overflow: ellipsis;
431
- }
432
-
433
- .content {
434
- flex-grow: 1;
435
- padding: 0.5em;
436
- }
437
-
438
- .draggable-handle {
439
- cursor: move;
440
- }
441
-
442
- .fade-enter,
443
- .fade-leave-to {
444
- opacity: 0;
445
- transform: scale(0.9);
446
- }
447
-
448
- .fade-enter-active,
449
- .fade-leave-active {
450
- transition: 0.2s;
451
- }
452
-
453
453
  .btn {
454
454
  background-color: transparent;
455
455
  border: none;