mirror of
https://github.com/ClovertaTheTrilobita/niri-dots.git
synced 2026-04-01 22:04:53 +00:00
77 lines
1.2 KiB
CSS
77 lines
1.2 KiB
CSS
|
|
@import '/home/cloverta/.config/wofi/gruvbox.css';
|
||
|
|
|
||
|
|
* {
|
||
|
|
font-family: 'Iosevka Nerd Font mono';
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Window */
|
||
|
|
window {
|
||
|
|
margin: 0px;
|
||
|
|
padding: 10px;
|
||
|
|
border-radius: 0px;
|
||
|
|
background-color: @bg;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Inner Box */
|
||
|
|
#inner-box {
|
||
|
|
margin: 5px;
|
||
|
|
padding: 10px;
|
||
|
|
border: none;
|
||
|
|
border-radius: 5px;
|
||
|
|
background-color: @bg;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
/* Outer Box */
|
||
|
|
#outer-box {
|
||
|
|
margin: 5px;
|
||
|
|
padding: 10px;
|
||
|
|
border: none;
|
||
|
|
background-color: @bg;
|
||
|
|
border-radius: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Scroll */
|
||
|
|
#scroll {
|
||
|
|
margin: 0px;
|
||
|
|
padding: 10px;
|
||
|
|
border: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Input */
|
||
|
|
#input {
|
||
|
|
margin: 10px 25px 10px 25px;
|
||
|
|
padding: 10px;
|
||
|
|
color: @accent;
|
||
|
|
background-color: @bg;
|
||
|
|
border: 2px solid @accent;
|
||
|
|
border-radius: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Text */
|
||
|
|
#text {
|
||
|
|
margin: 5px;
|
||
|
|
padding: 10px;
|
||
|
|
border: none;
|
||
|
|
color: @txt;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Selected Entry */
|
||
|
|
#entry:selected {
|
||
|
|
background-color: @bg;
|
||
|
|
border: 1px solid @accent2;
|
||
|
|
border-radius: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#entry:selected #text {
|
||
|
|
color: @txt;
|
||
|
|
}
|
||
|
|
image {
|
||
|
|
margin-left: 10px;
|
||
|
|
}
|
||
|
|
/*entfernen des anderen durch .left oder .right*/
|
||
|
|
#input > image.right {
|
||
|
|
-gtk-icon-transform:scaleX(0);
|
||
|
|
}
|