ywana-core8 0.2.10 → 0.2.13
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 +5 -1
- package/dist/index.js +258 -198
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +258 -198
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +258 -198
- package/dist/index.umd.js.map +1 -1
- package/package.json +6 -7
- package/src/desktop/window.css +5 -1
- package/src/desktop/window.js +3 -1
- package/src/html/switch.example.js +1 -1
- package/src/html/switch-debug.js +0 -197
- package/src/html/switch-test-visual.js +0 -294
package/dist/index.css
CHANGED
@@ -15841,6 +15841,11 @@ li.selected,
|
|
15841
15841
|
box-shadow: none;
|
15842
15842
|
}
|
15843
15843
|
|
15844
|
+
.window--minimized {
|
15845
|
+
visibility: hidden;
|
15846
|
+
pointer-events: none;
|
15847
|
+
}
|
15848
|
+
|
15844
15849
|
.window--dragging {
|
15845
15850
|
pointer-events: none;
|
15846
15851
|
}
|
@@ -15960,7 +15965,6 @@ li.selected,
|
|
15960
15965
|
/* Content */
|
15961
15966
|
.window__content {
|
15962
15967
|
flex: 1;
|
15963
|
-
overflow: auto;
|
15964
15968
|
background: white;
|
15965
15969
|
}
|
15966
15970
|
|