anentrypoint-design 0.0.380 → 0.0.381
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/app-shell.css +16 -0
- package/chat.css +102 -62
- package/colors_and_type.css +66 -7
- package/community.css +104 -70
- package/dist/247420.css +900 -308
- package/dist/247420.js +31 -28
- package/package.json +1 -1
- package/src/components/content.js +13 -4
- package/src/components/freddie/helpers.js +7 -0
- package/src/components/freddie.js +21 -21
- package/src/css/app-shell/base.css +11 -1
- package/src/css/app-shell/catalog-theme.css +7 -0
- package/src/css/app-shell/chat-polish.css +6 -1
- package/src/css/app-shell/data-density.css +22 -4
- package/src/css/app-shell/files.css +3 -3
- package/src/css/app-shell/hero-content.css +1 -1
- package/src/css/app-shell/kits-appended.css +387 -33
- package/src/css/app-shell/panel-row.css +6 -1
- package/src/css/app-shell/plugins-config.css +1 -1
- package/src/css/app-shell/responsive2-workspace.css +17 -12
- package/src/css/app-shell/states-interactions.css +9 -4
- package/src/kits/os/launcher.css +1 -1
- package/src/kits/os/theme.css +359 -283
- package/src/kits/os/wm.css +2 -2
- package/src/kits/slides/deck-stage-style.js +5 -2
- package/src/kits/spoint/host-join-lobby.css +1 -1
- package/src/kits/spoint/loading-screen.css +1 -1
package/src/kits/os/wm.css
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
position: fixed;
|
|
9
9
|
inset: 0;
|
|
10
10
|
pointer-events: none;
|
|
11
|
-
z-index:
|
|
11
|
+
z-index: var(--z-window);
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
.wm-win {
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
/* Edge + corner resize hit-zones. Invisible (no glyph) — they only widen the
|
|
120
120
|
* grab area beyond the SE .wm-resize grip. `width`/`height` are the grab
|
|
121
121
|
* thickness; corners overlap edges and win via later source order + size. */
|
|
122
|
-
.wm-edge { position: absolute; touch-action: none; z-index:
|
|
122
|
+
.wm-edge { position: absolute; touch-action: none; z-index: var(--z-raised); }
|
|
123
123
|
.wm-edge[data-dir='n'] { top: -3px; left: 8px; right: 8px; height: 8px; cursor: ns-resize; }
|
|
124
124
|
.wm-edge[data-dir='s'] { bottom: -3px; left: 8px; right: 8px; height: 8px; cursor: ns-resize; }
|
|
125
125
|
.wm-edge[data-dir='e'] { right: -3px; top: 8px; bottom: 8px; width: 8px; cursor: ew-resize; }
|
|
@@ -28,8 +28,11 @@ export const STYLESHEET = `
|
|
|
28
28
|
visibility: hidden;
|
|
29
29
|
}
|
|
30
30
|
::slotted([data-deck-active]) { opacity: 1; pointer-events: auto; visibility: visible; }
|
|
31
|
+
/* These stack only against each other: :host is position:fixed, so the
|
|
32
|
+
shadow root is its own stacking context and the old max-int values
|
|
33
|
+
bought nothing over the scale's rungs. Controls sit above tap zones. */
|
|
31
34
|
.tapzones {
|
|
32
|
-
position: fixed; inset: 0; display: flex; z-index:
|
|
35
|
+
position: fixed; inset: 0; display: flex; z-index: var(--z-raised); pointer-events: none;
|
|
33
36
|
}
|
|
34
37
|
.tapzone { flex: 1; pointer-events: auto; -webkit-tap-highlight-color: transparent; }
|
|
35
38
|
@media (hover: hover) and (pointer: fine) { .tapzones { display: none; } }
|
|
@@ -48,7 +51,7 @@ export const STYLESHEET = `
|
|
|
48
51
|
opacity: 0; pointer-events: none;
|
|
49
52
|
transition: opacity 260ms ease, transform 260ms cubic-bezier(.2,.8,.2,1), filter 260ms ease;
|
|
50
53
|
transform-origin: center bottom;
|
|
51
|
-
z-index:
|
|
54
|
+
z-index: var(--z-sticky);
|
|
52
55
|
user-select: none;
|
|
53
56
|
}
|
|
54
57
|
.overlay[data-visible] {
|