Regenerated

This commit is contained in:
2026-04-13 16:24:09 +02:00
parent 17000b3230
commit 30f06717fc
3 changed files with 419 additions and 667 deletions
+364 -446
View File
File diff suppressed because it is too large Load Diff
+28 -110
View File
@@ -4507,132 +4507,50 @@ This is the default layout for wofi
@define-color green #a6e3a1; @define-color green #a6e3a1;
*/ */
/* ========================= window {
GLOBAL margin: 5px;
========================= */ border: 2px solid red;
* { background-color: red;
background-color: transparent;
color: @text;
font-family: "JetBrainsMono Nerd Font", monospace;
font-size: 12pt;
} }
/* =========================
WINDOW BORDER (RELIABLE)
Wofi-safe fake border system
========================= */
#window {
background: linear-gradient(45deg, #f38ba8, #a6e3a1);
border-radius: 28px;
border: 2px solid red;
padding: 2px; /* border thickness */
box-shadow:
0 10px 30px rgba(0,0,0,0.5);
}
/* =========================
INNER CONTAINER
========================= */
#outer-box {
background-color: rgba(30, 30, 46, 0.98);
border-radius: 26px;
padding: 12px;
width: 400px;
}
/* IMPORTANT:
remove duplicate inner styling (this was breaking layout) */
#inner-box {
background: transparent;
padding: 0;
box-shadow: none;
}
/* =========================
INPUT
========================= */
#input { #input {
background-color: @surface0; margin: 5px;
color: @text; border: 2px solid blue;
background-color: blue;
border: 1px solid @surface1;
border-radius: 18px;
padding: 8px 14px;
margin-bottom: 10px;
} }
#input:focus { #inner-box {
border: 1px solid @blue; margin: 5px;
border: 2px solid yellow;
background-color: yellow;
} }
/* ========================= #outer-box {
ENTRIES margin: 5px;
========================= */ border: 2px solid green;
background-color: green;
#entry {
background-color: rgba(0, 0, 0, 0.35);
color: @subtext1;
border-radius: 18px;
padding: 8px 14px;
margin: 2px 0;
} }
/* hover / focus */ #scroll {
#entry:focus { margin: 5px;
background-color: rgba(0, 0, 0, 0.5); border: 2px solid orange;
color: @lavender; background-color: orange;
} }
/* ========================= #text {
SELECTED (GRADIENT) margin: 5px;
========================= */ border: 2px solid cyan;
background-color: cyan;
}
#entry:selected { #entry:selected {
background: linear-gradient(45deg, @blue, @green); background-color: rgba(0,0,0,0);
color: @base; }
font-weight: bold; #text:selected {
background-color: red;
} }
/* =========================
ICONS
========================= */
#entry image {
margin-right: 10px;
opacity: 0.85;
}
/* =========================
SCROLLBAR
========================= */
#scrollbar {
background-color: @surface0;
border-radius: 20px;
width: 6px;
}
#scrollbar handle {
background: linear-gradient(45deg, @blue, @green);
border-radius: 20px;
}
/* =========================
PROMPT
========================= */
#prompt {
color: @subtext0;
margin-right: 6px;
}
#+END_SRC #+END_SRC
+27 -111
View File
@@ -6,129 +6,45 @@
@define-color green #a6e3a1; @define-color green #a6e3a1;
*/ */
/* ========================= window {
GLOBAL margin: 5px;
========================= */ border: 2px solid red;
* { background-color: red;
background-color: transparent;
color: @text;
font-family: "JetBrainsMono Nerd Font", monospace;
font-size: 12pt;
} }
/* =========================
WINDOW BORDER (RELIABLE)
Wofi-safe fake border system
========================= */
#window {
background: linear-gradient(45deg, #f38ba8, #a6e3a1);
border-radius: 28px;
border: 2px solid red;
padding: 2px; /* border thickness */
box-shadow:
0 10px 30px rgba(0,0,0,0.5);
}
/* =========================
INNER CONTAINER
========================= */
#outer-box {
background-color: rgba(30, 30, 46, 0.98);
border-radius: 26px;
padding: 12px;
width: 400px;
}
/* IMPORTANT:
remove duplicate inner styling (this was breaking layout) */
#inner-box {
background: transparent;
padding: 0;
box-shadow: none;
}
/* =========================
INPUT
========================= */
#input { #input {
background-color: @surface0; margin: 5px;
color: @text; border: 2px solid blue;
background-color: blue;
border: 1px solid @surface1;
border-radius: 18px;
padding: 8px 14px;
margin-bottom: 10px;
} }
#input:focus { #inner-box {
border: 1px solid @blue; margin: 5px;
border: 2px solid yellow;
background-color: yellow;
} }
/* ========================= #outer-box {
ENTRIES margin: 5px;
========================= */ border: 2px solid green;
background-color: green;
#entry {
background-color: rgba(0, 0, 0, 0.35);
color: @subtext1;
border-radius: 18px;
padding: 8px 14px;
margin: 2px 0;
} }
/* hover / focus */ #scroll {
#entry:focus { margin: 5px;
background-color: rgba(0, 0, 0, 0.5); border: 2px solid orange;
color: @lavender; background-color: orange;
} }
/* ========================= #text {
SELECTED (GRADIENT) margin: 5px;
========================= */ border: 2px solid cyan;
background-color: cyan;
}
#entry:selected { #entry:selected {
background: linear-gradient(45deg, @blue, @green); background-color: rgba(0,0,0,0);
color: @base;
font-weight: bold;
} }
#text:selected {
/* ========================= background-color: red;
ICONS
========================= */
#entry image {
margin-right: 10px;
opacity: 0.85;
}
/* =========================
SCROLLBAR
========================= */
#scrollbar {
background-color: @surface0;
border-radius: 20px;
width: 6px;
}
#scrollbar handle {
background: linear-gradient(45deg, @blue, @green);
border-radius: 20px;
}
/* =========================
PROMPT
========================= */
#prompt {
color: @subtext0;
margin-right: 6px;
} }