Moved theming to a central location

This commit is contained in:
Michel Fedde 2025-04-25 19:34:44 +02:00
parent 1c6fec2a1f
commit 54ecbaea3c
13 changed files with 20 additions and 6 deletions

View file

@ -1,57 +0,0 @@
@import "../../theming/library/entry.scss";
* {
color: $foreground;
}
window {
background-color: $background-semitransparent;
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;
}