ywana-core8 0.2.9 → 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 +9 -4
- 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/ApplicationMenu.css +4 -3
- package/src/desktop/window.css +5 -1
- package/src/desktop/window.js +3 -1
- package/src/html/switch.example.js +1 -1
- package/src/examples/ApplicationMenuExample.js +0 -361
- 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
|
|
@@ -16172,8 +16176,8 @@ li.selected,
|
|
16172
16176
|
left: 0;
|
16173
16177
|
right: 0;
|
16174
16178
|
bottom: 0; /* Covers entire workspace container */
|
16175
|
-
background: rgba(0, 0, 0, 0.
|
16176
|
-
backdrop-filter: blur(
|
16179
|
+
background: rgba(0, 0, 0, 0.16);
|
16180
|
+
backdrop-filter: blur(1px);
|
16177
16181
|
z-index: 10000; /* Always above all windows */
|
16178
16182
|
display: flex;
|
16179
16183
|
align-items: flex-end;
|
@@ -16198,7 +16202,8 @@ li.selected,
|
|
16198
16202
|
box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
|
16199
16203
|
width: 30rem;
|
16200
16204
|
max-width: 1000px;
|
16201
|
-
height:
|
16205
|
+
height: 55vh;
|
16206
|
+
min-height: 30rem;
|
16202
16207
|
max-height: calc(100% - 80px); /* Espacio para taskbar */
|
16203
16208
|
display: grid;
|
16204
16209
|
grid-template-rows: auto auto 1fr;
|