Regenerated
This commit is contained in:
+364
-446
File diff suppressed because it is too large
Load Diff
+28
-110
@@ -4507,132 +4507,50 @@ This is the default layout for wofi
|
||||
@define-color green #a6e3a1;
|
||||
*/
|
||||
|
||||
/* =========================
|
||||
GLOBAL
|
||||
========================= */
|
||||
* {
|
||||
background-color: transparent;
|
||||
color: @text;
|
||||
font-family: "JetBrainsMono Nerd Font", monospace;
|
||||
font-size: 12pt;
|
||||
window {
|
||||
margin: 5px;
|
||||
border: 2px solid red;
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
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 {
|
||||
background-color: @surface0;
|
||||
color: @text;
|
||||
|
||||
border: 1px solid @surface1;
|
||||
border-radius: 18px;
|
||||
|
||||
padding: 8px 14px;
|
||||
margin-bottom: 10px;
|
||||
margin: 5px;
|
||||
border: 2px solid blue;
|
||||
background-color: blue;
|
||||
}
|
||||
|
||||
#input:focus {
|
||||
border: 1px solid @blue;
|
||||
#inner-box {
|
||||
margin: 5px;
|
||||
border: 2px solid yellow;
|
||||
background-color: yellow;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
ENTRIES
|
||||
========================= */
|
||||
|
||||
#entry {
|
||||
background-color: rgba(0, 0, 0, 0.35);
|
||||
color: @subtext1;
|
||||
|
||||
border-radius: 18px;
|
||||
padding: 8px 14px;
|
||||
margin: 2px 0;
|
||||
#outer-box {
|
||||
margin: 5px;
|
||||
border: 2px solid green;
|
||||
background-color: green;
|
||||
}
|
||||
|
||||
/* hover / focus */
|
||||
#entry:focus {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
color: @lavender;
|
||||
#scroll {
|
||||
margin: 5px;
|
||||
border: 2px solid orange;
|
||||
background-color: orange;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
SELECTED (GRADIENT)
|
||||
========================= */
|
||||
#text {
|
||||
margin: 5px;
|
||||
border: 2px solid cyan;
|
||||
background-color: cyan;
|
||||
}
|
||||
|
||||
#entry:selected {
|
||||
background: linear-gradient(45deg, @blue, @green);
|
||||
color: @base;
|
||||
font-weight: bold;
|
||||
background-color: rgba(0,0,0,0);
|
||||
}
|
||||
#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
|
||||
|
||||
|
||||
|
||||
@@ -6,129 +6,45 @@
|
||||
@define-color green #a6e3a1;
|
||||
*/
|
||||
|
||||
/* =========================
|
||||
GLOBAL
|
||||
========================= */
|
||||
* {
|
||||
background-color: transparent;
|
||||
color: @text;
|
||||
font-family: "JetBrainsMono Nerd Font", monospace;
|
||||
font-size: 12pt;
|
||||
window {
|
||||
margin: 5px;
|
||||
border: 2px solid red;
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
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 {
|
||||
background-color: @surface0;
|
||||
color: @text;
|
||||
|
||||
border: 1px solid @surface1;
|
||||
border-radius: 18px;
|
||||
|
||||
padding: 8px 14px;
|
||||
margin-bottom: 10px;
|
||||
margin: 5px;
|
||||
border: 2px solid blue;
|
||||
background-color: blue;
|
||||
}
|
||||
|
||||
#input:focus {
|
||||
border: 1px solid @blue;
|
||||
#inner-box {
|
||||
margin: 5px;
|
||||
border: 2px solid yellow;
|
||||
background-color: yellow;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
ENTRIES
|
||||
========================= */
|
||||
|
||||
#entry {
|
||||
background-color: rgba(0, 0, 0, 0.35);
|
||||
color: @subtext1;
|
||||
|
||||
border-radius: 18px;
|
||||
padding: 8px 14px;
|
||||
margin: 2px 0;
|
||||
#outer-box {
|
||||
margin: 5px;
|
||||
border: 2px solid green;
|
||||
background-color: green;
|
||||
}
|
||||
|
||||
/* hover / focus */
|
||||
#entry:focus {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
color: @lavender;
|
||||
#scroll {
|
||||
margin: 5px;
|
||||
border: 2px solid orange;
|
||||
background-color: orange;
|
||||
}
|
||||
|
||||
/* =========================
|
||||
SELECTED (GRADIENT)
|
||||
========================= */
|
||||
#text {
|
||||
margin: 5px;
|
||||
border: 2px solid cyan;
|
||||
background-color: cyan;
|
||||
}
|
||||
|
||||
#entry:selected {
|
||||
background: linear-gradient(45deg, @blue, @green);
|
||||
color: @base;
|
||||
font-weight: bold;
|
||||
background-color: rgba(0,0,0,0);
|
||||
}
|
||||
|
||||
/* =========================
|
||||
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;
|
||||
#text:selected {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user