Regenerated
This commit is contained in:
+379
-411
File diff suppressed because it is too large
Load Diff
+12
-5
@@ -4522,10 +4522,16 @@ This is the default layout for wofi
|
||||
OUTER BORDER (GRADIENT)
|
||||
========================= */
|
||||
|
||||
window {
|
||||
margin: 5px;
|
||||
border: 2px solid red;
|
||||
background-color: red;
|
||||
#window {
|
||||
background-color: rgba(30, 30, 46, 0.98);
|
||||
border-radius: 28px;
|
||||
|
||||
|
||||
/* THIS is your “border” */
|
||||
box-shadow:
|
||||
0 0 0 2px #89b4fa,
|
||||
0 0 0 4px #a6e3a1,
|
||||
0 10px 30px rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
/* OUTER GLOW LAYER (THIS is your "border") */
|
||||
@@ -4619,7 +4625,8 @@ background-color: red;
|
||||
#prompt {
|
||||
color: @subtext0;
|
||||
margin-right: 6px;
|
||||
}#+END_SRC
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,8 +1,14 @@
|
||||
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
|
||||
@import "~/.config/shared/Colors.css";
|
||||
|
||||
/*
|
||||
@define-color green #a6e3a1;
|
||||
@define-color blue #89b4fa;
|
||||
*/
|
||||
|
||||
|
||||
/* =========================
|
||||
GLOBAL by Henro
|
||||
GLOBAL
|
||||
========================= */
|
||||
* {
|
||||
background-color: transparent;
|
||||
@@ -12,28 +18,40 @@
|
||||
}
|
||||
|
||||
/* =========================
|
||||
OUTER BORDER (REAL WORKING GRADIENT BORDER)
|
||||
OUTER BORDER (GRADIENT)
|
||||
========================= */
|
||||
|
||||
#window {
|
||||
background: transparent;
|
||||
background-color: rgba(30, 30, 46, 0.98);
|
||||
border-radius: 28px;
|
||||
|
||||
|
||||
/* THIS is your “border” */
|
||||
box-shadow:
|
||||
0 0 0 2px #89b4fa,
|
||||
0 0 0 4px #a6e3a1,
|
||||
0 10px 30px rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
/* OUTER GLOW LAYER (THIS is your "border") */
|
||||
#outer-box {
|
||||
background: linear-gradient(45deg, @blue, @green);
|
||||
padding: 2px;
|
||||
border-radius: 28px;
|
||||
border-radius: 30px;
|
||||
|
||||
padding: 6px; /* IMPORTANT: must be larger than before */
|
||||
}
|
||||
|
||||
/* INNER PANEL */
|
||||
#inner-box {
|
||||
background: rgba(30, 30, 46, 0.92); /* controlled transparency */
|
||||
border-radius: 26px;
|
||||
background: rgba(30, 30, 46, 0.98);
|
||||
border-radius: 24px;
|
||||
|
||||
padding: 12px;
|
||||
width: 400px;
|
||||
|
||||
box-shadow:
|
||||
0 10px 30px rgba(0,0,0,0.4);
|
||||
0 0 25px rgba(0,0,0,0.6),
|
||||
0 0 0 1px rgba(255,255,255,0.04);
|
||||
}
|
||||
|
||||
/* =========================
|
||||
@@ -42,10 +60,8 @@
|
||||
#input {
|
||||
background-color: @surface0;
|
||||
color: @text;
|
||||
|
||||
border: 1px solid @surface1;
|
||||
border-radius: 18px;
|
||||
|
||||
padding: 8px 14px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
@@ -55,33 +71,27 @@
|
||||
}
|
||||
|
||||
/* =========================
|
||||
ENTRIES (DARKER + CLEARER)
|
||||
ENTRIES
|
||||
========================= */
|
||||
|
||||
#entry {
|
||||
background-color: rgba(0, 0, 0, 0.35);
|
||||
background-color: transparent;
|
||||
color: @subtext1;
|
||||
|
||||
border-radius: 18px;
|
||||
padding: 8px 14px;
|
||||
margin: 2px 0;
|
||||
|
||||
transition: all 0.15s ease;
|
||||
}
|
||||
|
||||
/* hover */
|
||||
#entry:focus {
|
||||
background-color: rgba(0, 0, 0, 0.45);
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
color: @lavender;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
SELECTED (REAL GRADIENT FIX)
|
||||
SELECTED (GRADIENT)
|
||||
========================= */
|
||||
|
||||
#entry:selected {
|
||||
background: linear-gradient(45deg, @blue, @green);
|
||||
|
||||
color: @base;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user