Regenerated

This commit is contained in:
2026-04-13 15:56:38 +02:00
parent 09ec37f871
commit 8087acaa7b
2 changed files with 352 additions and 348 deletions
+344 -342
View File
File diff suppressed because it is too large Load Diff
+8 -6
View File
@@ -4517,26 +4517,28 @@ This is the default layout for wofi
========================= */ ========================= */
#window { #window {
background: rgba(0,0,0,0); /* IMPORTANT: let outer glow show */ background: transparent;
} }
/* OUTER FRAME (fake border) */ /* OUTER GLOW LAYER (THIS is your "border") */
#outer-box { #outer-box {
background: linear-gradient(45deg, @blue, @green); background: linear-gradient(45deg, @blue, @green);
border-radius: 30px; border-radius: 30px;
padding: 3px; /* border thickness */ padding: 6px; /* IMPORTANT: must be larger than before */
} }
/* INNER PANEL */ /* INNER PANEL */
#inner-box { #inner-box {
background: rgba(30, 30, 46, 0.95); background: rgba(30, 30, 46, 0.98);
border-radius: 27px; border-radius: 24px;
padding: 12px; padding: 12px;
width: 400px; width: 400px;
box-shadow: 0 10px 35px rgba(0,0,0,0.5); box-shadow:
0 0 25px rgba(0,0,0,0.6),
0 0 0 1px rgba(255,255,255,0.04);
} }
/* ========================= /* =========================