Regenerated

This commit is contained in:
2026-04-13 16:17:00 +02:00
parent 08ac569642
commit c48f278b8b
2 changed files with 478 additions and 405 deletions
+450 -382
View File
File diff suppressed because it is too large Load Diff
+28 -23
View File
@@ -4502,16 +4502,10 @@ This is the default layout for wofi
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never #+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never
@import "~/.config/shared/Colors.css"; @import "~/.config/shared/Colors.css";
/*
@define-color green #a6e3a1;
@define-color blue #89b4fa;
*/
/* ========================= /* =========================
GLOBAL GLOBAL
========================= */ ========================= */
* { * {
background-color: transparent; background-color: transparent;
color: @text; color: @text;
font-family: "JetBrainsMono Nerd Font", monospace; font-family: "JetBrainsMono Nerd Font", monospace;
@@ -4519,17 +4513,24 @@ This is the default layout for wofi
} }
/* ========================= /* =========================
OUTER BORDER (GRADIENT) WINDOW BORDER (RELIABLE)
Wofi-safe fake border system
========================= */ ========================= */
#window { #window {
background: linear-gradient(45deg, @blue, @green); background: linear-gradient(45deg, @blue, @green);
border-radius: 28px; border-radius: 28px;
padding: 2px; /* <- THIS becomes the border thickness */ padding: 2px; /* border thickness */
box-shadow:
0 10px 30px rgba(0,0,0,0.5);
} }
/* inner panel sits inside border */ /* =========================
INNER CONTAINER
========================= */
#outer-box { #outer-box {
background-color: rgba(30, 30, 46, 0.98); background-color: rgba(30, 30, 46, 0.98);
border-radius: 26px; border-radius: 26px;
@@ -4538,27 +4539,25 @@ This is the default layout for wofi
width: 400px; width: 400px;
} }
/* INNER PANEL */ /* IMPORTANT:
remove duplicate inner styling (this was breaking layout) */
#inner-box { #inner-box {
background: rgba(30, 30, 46, 0.98); background: transparent;
border-radius: 24px; padding: 0;
box-shadow: none;
padding: 12px;
width: 400px;
box-shadow:
0 0 25px rgba(0,0,0,0.6),
0 0 0 1px rgba(255,255,255,0.04);
} }
/* ========================= /* =========================
INPUT INPUT
========================= */ ========================= */
#input { #input {
background-color: @surface0; background-color: @surface0;
color: @text; color: @text;
border: 1px solid @surface1; border: 1px solid @surface1;
border-radius: 18px; border-radius: 18px;
padding: 8px 14px; padding: 8px 14px;
margin-bottom: 10px; margin-bottom: 10px;
} }
@@ -4570,23 +4569,26 @@ This is the default layout for wofi
/* ========================= /* =========================
ENTRIES ENTRIES
========================= */ ========================= */
#entry { #entry {
background-color: transparent; background-color: rgba(0, 0, 0, 0.35);
color: @subtext1; color: @subtext1;
border-radius: 18px; border-radius: 18px;
padding: 8px 14px; padding: 8px 14px;
margin: 2px 0; margin: 2px 0;
transition: all 0.15s ease;
} }
/* hover / focus */
#entry:focus { #entry:focus {
background-color: rgba(0, 0, 0, 0.15); background-color: rgba(0, 0, 0, 0.5);
color: @lavender; color: @lavender;
} }
/* ========================= /* =========================
SELECTED (GRADIENT) SELECTED (GRADIENT)
========================= */ ========================= */
#entry:selected { #entry:selected {
background: linear-gradient(45deg, @blue, @green); background: linear-gradient(45deg, @blue, @green);
color: @base; color: @base;
@@ -4596,6 +4598,7 @@ This is the default layout for wofi
/* ========================= /* =========================
ICONS ICONS
========================= */ ========================= */
#entry image { #entry image {
margin-right: 10px; margin-right: 10px;
opacity: 0.85; opacity: 0.85;
@@ -4604,6 +4607,7 @@ This is the default layout for wofi
/* ========================= /* =========================
SCROLLBAR SCROLLBAR
========================= */ ========================= */
#scrollbar { #scrollbar {
background-color: @surface0; background-color: @surface0;
border-radius: 20px; border-radius: 20px;
@@ -4618,6 +4622,7 @@ This is the default layout for wofi
/* ========================= /* =========================
PROMPT PROMPT
========================= */ ========================= */
#prompt { #prompt {
color: @subtext0; color: @subtext0;
margin-right: 6px; margin-right: 6px;