117 lines
2.2 KiB
CSS
117 lines
2.2 KiB
CSS
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
|
|
|
|
/* --- Last variant --- */
|
|
/* --- Unified Wofi Theme --- */
|
|
@import "~/.config/shared/Colors.css";
|
|
|
|
/* --- GLOBAL --- */
|
|
* {
|
|
background-color: @base-alpha;
|
|
color: @text;
|
|
font-family: "JetBrainsMono Nerd Font", monospace;
|
|
font-size: 12pt;
|
|
}
|
|
|
|
/* --- MAIN WINDOW (drun + dmenu unified) --- */
|
|
#window, #main, #outer-box, #dmenu {
|
|
background:
|
|
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
|
linear-gradient(45deg, @blue, @green) border-box;
|
|
|
|
border: 2px solid transparent;
|
|
border-radius: 28px;
|
|
|
|
padding: 12px;
|
|
margin: 0;
|
|
|
|
width: 400px;
|
|
|
|
box-shadow:
|
|
0 10px 30px rgba(0,0,0,0.35),
|
|
0 0 0 1px rgba(255,255,255,0.03) inset;
|
|
}
|
|
|
|
/* --- INNER LAYOUT --- */
|
|
#inner-box {
|
|
spacing: 6px;
|
|
}
|
|
|
|
/* --- INPUT FIELD --- */
|
|
#input {
|
|
background-color: @surface0;
|
|
color: @text;
|
|
|
|
border: 1px solid @surface1;
|
|
border-radius: 20px;
|
|
|
|
padding: 8px 14px;
|
|
margin-bottom: 10px;
|
|
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
#input:focus {
|
|
border: 1px solid @blue;
|
|
}
|
|
|
|
/* --- ENTRY (base) --- */
|
|
#entry {
|
|
background-color: rgba(255,255,255,0.04);
|
|
color: @subtext1;
|
|
|
|
border-radius: 20px;
|
|
padding: 8px 14px;
|
|
margin: 2px 0;
|
|
|
|
border: 2px solid transparent;
|
|
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
/* --- ENTRY HOVER / FOCUS --- */
|
|
#entry:focus {
|
|
background:
|
|
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
|
linear-gradient(45deg, @blue, @green) border-box;
|
|
|
|
color: @lavender;
|
|
}
|
|
|
|
/* --- ENTRY SELECTED --- */
|
|
#entry:selected {
|
|
background:
|
|
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
|
linear-gradient(45deg, @blue, @green) border-box;
|
|
|
|
color: @text;
|
|
}
|
|
|
|
/* --- ICONS (drun only) --- */
|
|
#entry image {
|
|
margin-right: 10px;
|
|
opacity: 0.85;
|
|
}
|
|
|
|
/* --- SCROLL AREA --- */
|
|
#scroll {
|
|
margin-top: 6px;
|
|
}
|
|
|
|
/* --- 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;
|
|
}
|