Adds more wal theming
This commit is contained in:
parent
04f6af0726
commit
af5ec3580c
15 changed files with 353 additions and 80 deletions
53
.config/nwg-drawer/style/style.scss
Normal file
53
.config/nwg-drawer/style/style.scss
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
@import "../../theming/library/entry.scss";
|
||||
|
||||
window {
|
||||
background-color: rgba($background, 0.95);
|
||||
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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue