yadm-config/.config/theming/applications/nwg-drawer/style.scss
2025-04-25 21:26:38 +02:00

57 lines
861 B
SCSS

@import "../../library/entry.scss";
* {
color: $foreground;
}
window {
background-color: $background;
color: $foreground
}
/* search entry */
entry {
background-color: rgba($color3, 0.2);
}
entry:focus {
background-color: rgba($color3, 0.3);
}
button {
background: transparent;
box-shadow: none;
border-radius: $border-radius;
}
button:hover {
background-color: rgba($color7, 0.1);
}
button:focus {
background-color: rgba($color8, 0.5);
}
/* in case you wanted to give category buttons a different look */
#category-button {
margin: 1rem;
}
#pinned-box {
border-bottom: 1px dotted $color2;
}
#files-box {
padding: 0px;
border: 1px dotted $color4;
border-radius: $border-radius;
}
/* math operation result label */
#math-label {
background: $background;
padding: 0;
font-weight: bold;
font-size: 32px;
}