freddie 0.0.76 → 0.0.78

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.
@@ -1,115 +0,0 @@
1
- /* ============================================================
2
- Window Manager visuals — paired with createWM() behavior
3
- Tokens: --os-* (defined by desktop/theme.css)
4
- Bible: tonal surfaces, no borders for chrome, inset rail for focus.
5
- ============================================================ */
6
-
7
- .wm-root {
8
- position: fixed;
9
- inset: 0;
10
- pointer-events: none;
11
- z-index: 9000;
12
- }
13
-
14
- .wm-win {
15
- position: absolute;
16
- min-width: 200px;
17
- min-height: 120px;
18
- background: var(--os-bg-1);
19
- color: var(--os-fg);
20
- border: none;
21
- border-radius: var(--r-3, 18px);
22
- display: flex;
23
- flex-direction: column;
24
- pointer-events: auto;
25
- overflow: hidden;
26
- }
27
- .wm-win.wm-focused { box-shadow: inset 4px 0 0 var(--os-accent); }
28
-
29
- .wm-bar {
30
- display: flex;
31
- align-items: center;
32
- padding: 6px 10px;
33
- background: var(--os-bg-2);
34
- cursor: move;
35
- user-select: none;
36
- gap: 8px;
37
- touch-action: none;
38
- border: none;
39
- }
40
- .wm-title {
41
- flex: 1;
42
- font: 12px var(--os-font);
43
- white-space: nowrap;
44
- overflow: hidden;
45
- text-overflow: ellipsis;
46
- text-transform: lowercase;
47
- }
48
-
49
- .wm-btns { display: flex; gap: 4px; }
50
- .wm-btn {
51
- width: 22px;
52
- height: 22px;
53
- border: none;
54
- background: var(--os-bg-3);
55
- color: var(--os-fg-2);
56
- cursor: pointer;
57
- padding: 0;
58
- font: 600 12px var(--os-mono);
59
- line-height: 1;
60
- display: inline-flex;
61
- align-items: center;
62
- justify-content: center;
63
- border-radius: var(--r-1, 6px);
64
- transition: background 100ms ease, color 100ms ease;
65
- }
66
- .wm-btn:hover { background: var(--panel-hover, var(--os-bg-2)); color: var(--os-fg); }
67
-
68
- .wm-body {
69
- flex: 1;
70
- overflow: auto;
71
- position: relative;
72
- background: var(--os-bg-1);
73
- }
74
-
75
- .wm-resize {
76
- position: absolute;
77
- right: 0;
78
- bottom: 0;
79
- width: 14px;
80
- height: 14px;
81
- cursor: nwse-resize;
82
- background: transparent;
83
- color: var(--os-fg-3);
84
- opacity: 0.4;
85
- font: 10px var(--os-mono);
86
- line-height: 1;
87
- display: flex;
88
- align-items: flex-end;
89
- justify-content: flex-end;
90
- touch-action: none;
91
- }
92
- .wm-resize::after { content: '\25E2'; }
93
-
94
- .wm-win.wm-min .wm-body,
95
- .wm-win.wm-min .wm-resize { display: none; }
96
-
97
- .wm-win.wm-max {
98
- left: 0 !important;
99
- top: 0 !important;
100
- width: 100% !important;
101
- height: 100% !important;
102
- border-radius: 0;
103
- }
104
-
105
- @media (max-width: 767px) {
106
- .wm-win {
107
- left: 0 !important;
108
- top: 0 !important;
109
- width: 100% !important;
110
- height: 100% !important;
111
- border-radius: 0;
112
- border: none;
113
- }
114
- .wm-resize { display: none; }
115
- }