Regenerated
This commit is contained in:
+439
-369
File diff suppressed because it is too large
Load Diff
+103
-33
@@ -4501,67 +4501,137 @@ prompt = > ...
|
|||||||
This is the default layout for wofi
|
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";
|
||||||
|
@import "~/.config/shared/Colors.css";
|
||||||
|
|
||||||
* {
|
/* =========================
|
||||||
|
GLOBAL
|
||||||
|
========================= */
|
||||||
|
* {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
color: @text;
|
color: @text;
|
||||||
font-family: "JetBrainsMono Nerd Font", monospace;
|
font-family: "JetBrainsMono Nerd Font", monospace;
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main {
|
/* =========================
|
||||||
background-color: @base;
|
WINDOW BORDER (STABLE)
|
||||||
border: 1px solid @surface0;
|
========================= */
|
||||||
border-radius: 30px; /* Rounded corners */
|
|
||||||
padding: 20px;
|
#window {
|
||||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
background: linear-gradient(45deg, @blue, @green);
|
||||||
|
border-radius: 28px;
|
||||||
|
padding: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* MAIN PANEL */
|
||||||
|
#outer-box {
|
||||||
|
background-color: rgba(30, 30, 46, 0.98); /* almost solid */
|
||||||
|
border-radius: 26px;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* remove conflicting layering */
|
||||||
|
#inner-box {
|
||||||
|
background: transparent;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
INPUT (STRONG + CLEAN)
|
||||||
|
========================= */
|
||||||
|
|
||||||
#input {
|
#input {
|
||||||
background-color: @surface0;
|
background-color: @surface1; /* stronger than surface0 */
|
||||||
color: @text;
|
color: @text;
|
||||||
border: 1px solid @surface1;
|
|
||||||
border-radius: 30px; /* Rounded corners */
|
border: 1px solid @surface2;
|
||||||
padding: 5px 10px;
|
border-radius: 18px;
|
||||||
|
|
||||||
|
padding: 10px 14px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#entry {
|
#input:focus {
|
||||||
background-color: rgba(
|
border: 1px solid @blue;
|
||||||
200,
|
background-color: @surface2;
|
||||||
200,
|
|
||||||
200,
|
|
||||||
0.6
|
|
||||||
); /* very light grey, very transparent */
|
|
||||||
color: @text;
|
|
||||||
border-radius: 30px;
|
|
||||||
padding: 5px 10px;
|
|
||||||
margin: 2px 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
ENTRIES (BASE)
|
||||||
|
========================= */
|
||||||
|
|
||||||
|
#entry {
|
||||||
|
background-color: rgba(0, 0, 0, 0.35);
|
||||||
|
color: @subtext1;
|
||||||
|
|
||||||
|
border-radius: 18px;
|
||||||
|
padding: 10px 14px;
|
||||||
|
margin: 2px 0;
|
||||||
|
|
||||||
|
transition: all 0.15s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* hover */
|
||||||
|
#entry:hover {
|
||||||
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
|
color: @text;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
FOCUS (keyboard navigation)
|
||||||
|
========================= */
|
||||||
|
|
||||||
#entry:focus {
|
#entry:focus {
|
||||||
background-color: @surface0;
|
background-color: @surface2;
|
||||||
color: @lavender;
|
color: @lavender;
|
||||||
border-radius: 30px; /* Rounded corners */
|
|
||||||
|
border-radius: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
SELECTED (CLEAR + STRONG)
|
||||||
|
========================= */
|
||||||
|
|
||||||
#entry:selected {
|
#entry:selected {
|
||||||
background-color: @surface0;
|
background: linear-gradient(45deg, @blue, @green);
|
||||||
color: @text;
|
color: @base;
|
||||||
border-radius: 30px; /* Rounded corners */
|
|
||||||
|
border-radius: 18px;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
ICONS
|
||||||
|
========================= */
|
||||||
|
|
||||||
|
#entry image {
|
||||||
|
margin-right: 10px;
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
SCROLLBAR
|
||||||
|
========================= */
|
||||||
|
|
||||||
#scrollbar {
|
#scrollbar {
|
||||||
background-color: @surface0;
|
background-color: @surface1;
|
||||||
border-radius: 30px; /* Rounded corners */
|
border-radius: 20px;
|
||||||
width: 8px;
|
width: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#scrollbar.handle {
|
#scrollbar handle {
|
||||||
background-color: @blue;
|
background: linear-gradient(45deg, @blue, @green);
|
||||||
border-radius: 30px; /* Rounded corners */
|
border-radius: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
PROMPT
|
||||||
|
========================= */
|
||||||
|
|
||||||
|
#prompt {
|
||||||
|
color: @subtext0;
|
||||||
|
margin-right: 6px;
|
||||||
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,62 +1,133 @@
|
|||||||
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
|
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
|
||||||
@import "~/.config/shared/Colors.css";
|
@import "~/.config/shared/Colors.css";
|
||||||
|
@import "~/.config/shared/Colors.css";
|
||||||
|
|
||||||
* {
|
/* =========================
|
||||||
|
GLOBAL
|
||||||
|
========================= */
|
||||||
|
* {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
color: @text;
|
color: @text;
|
||||||
font-family: "JetBrainsMono Nerd Font", monospace;
|
font-family: "JetBrainsMono Nerd Font", monospace;
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main {
|
/* =========================
|
||||||
background-color: @base;
|
WINDOW BORDER (STABLE)
|
||||||
border: 1px solid @surface0;
|
========================= */
|
||||||
border-radius: 30px; /* Rounded corners */
|
|
||||||
padding: 20px;
|
#window {
|
||||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
background: linear-gradient(45deg, @blue, @green);
|
||||||
|
border-radius: 28px;
|
||||||
|
padding: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* MAIN PANEL */
|
||||||
|
#outer-box {
|
||||||
|
background-color: rgba(30, 30, 46, 0.98); /* almost solid */
|
||||||
|
border-radius: 26px;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* remove conflicting layering */
|
||||||
|
#inner-box {
|
||||||
|
background: transparent;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
INPUT (STRONG + CLEAN)
|
||||||
|
========================= */
|
||||||
|
|
||||||
#input {
|
#input {
|
||||||
background-color: @surface0;
|
background-color: @surface1; /* stronger than surface0 */
|
||||||
color: @text;
|
color: @text;
|
||||||
border: 1px solid @surface1;
|
|
||||||
border-radius: 30px; /* Rounded corners */
|
border: 1px solid @surface2;
|
||||||
padding: 5px 10px;
|
border-radius: 18px;
|
||||||
|
|
||||||
|
padding: 10px 14px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#entry {
|
#input:focus {
|
||||||
background-color: rgba(
|
border: 1px solid @blue;
|
||||||
200,
|
background-color: @surface2;
|
||||||
200,
|
|
||||||
200,
|
|
||||||
0.6
|
|
||||||
); /* very light grey, very transparent */
|
|
||||||
color: @text;
|
|
||||||
border-radius: 30px;
|
|
||||||
padding: 5px 10px;
|
|
||||||
margin: 2px 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
ENTRIES (BASE)
|
||||||
|
========================= */
|
||||||
|
|
||||||
|
#entry {
|
||||||
|
background-color: rgba(0, 0, 0, 0.35);
|
||||||
|
color: @subtext1;
|
||||||
|
|
||||||
|
border-radius: 18px;
|
||||||
|
padding: 10px 14px;
|
||||||
|
margin: 2px 0;
|
||||||
|
|
||||||
|
transition: all 0.15s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* hover */
|
||||||
|
#entry:hover {
|
||||||
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
|
color: @text;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
FOCUS (keyboard navigation)
|
||||||
|
========================= */
|
||||||
|
|
||||||
#entry:focus {
|
#entry:focus {
|
||||||
background-color: @surface0;
|
background-color: @surface2;
|
||||||
color: @lavender;
|
color: @lavender;
|
||||||
border-radius: 30px; /* Rounded corners */
|
|
||||||
|
border-radius: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
SELECTED (CLEAR + STRONG)
|
||||||
|
========================= */
|
||||||
|
|
||||||
#entry:selected {
|
#entry:selected {
|
||||||
background-color: @surface0;
|
background: linear-gradient(45deg, @blue, @green);
|
||||||
color: @text;
|
color: @base;
|
||||||
border-radius: 30px; /* Rounded corners */
|
|
||||||
|
border-radius: 18px;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
ICONS
|
||||||
|
========================= */
|
||||||
|
|
||||||
|
#entry image {
|
||||||
|
margin-right: 10px;
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
SCROLLBAR
|
||||||
|
========================= */
|
||||||
|
|
||||||
#scrollbar {
|
#scrollbar {
|
||||||
background-color: @surface0;
|
background-color: @surface1;
|
||||||
border-radius: 30px; /* Rounded corners */
|
border-radius: 20px;
|
||||||
width: 8px;
|
width: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#scrollbar.handle {
|
#scrollbar handle {
|
||||||
background-color: @blue;
|
background: linear-gradient(45deg, @blue, @green);
|
||||||
border-radius: 30px; /* Rounded corners */
|
border-radius: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
PROMPT
|
||||||
|
========================= */
|
||||||
|
|
||||||
|
#prompt {
|
||||||
|
color: @subtext0;
|
||||||
|
margin-right: 6px;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user