chore: init comments / extra css
This commit is contained in:
parent
d203f87c51
commit
bcbfcc2497
2 changed files with 29 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
compileSCSS = name: source: "${pkgs.runCommandLocal name {} ''
|
compileSCSS = name: source: "${pkgs.runCommandLocal name {} ''
|
||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
${lib.getExe pkgs.sassc} -t expanded '${source}' > $out/${name}.css
|
${lib.getExe pkgs.sassc} -t expanded '${source}' > $out/${name}.css
|
||||||
|
|
|
@ -81,6 +81,8 @@ image {
|
||||||
border: 3px solid $pink;
|
border: 3px solid $pink;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* workspaces */
|
||||||
|
|
||||||
#workspaces {
|
#workspaces {
|
||||||
button {
|
button {
|
||||||
min-width: 28px;
|
min-width: 28px;
|
||||||
|
@ -91,6 +93,8 @@ image {
|
||||||
border: 3px solid $red;
|
border: 3px solid $red;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* end workspaces */
|
||||||
|
|
||||||
#window {
|
#window {
|
||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
border: 3px solid $peach;
|
border: 3px solid $peach;
|
||||||
|
@ -108,10 +112,34 @@ image {
|
||||||
border: 3px solid $yellow;
|
border: 3px solid $yellow;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* tray */
|
||||||
|
|
||||||
#tray {
|
#tray {
|
||||||
border: 3px solid $overlay1;
|
border: 3px solid $overlay1;
|
||||||
|
menu {
|
||||||
|
background: $base;
|
||||||
|
border-radius: 8px;
|
||||||
|
border: 3px solid $overlay1;
|
||||||
|
padding: 1.0rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#tray.passive {
|
||||||
|
border-bottom: 2px solid $base;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tray.active {
|
||||||
|
border-bottom: 2px solid $green;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tray.needs-attention {
|
||||||
|
border-bottom: 2px solid $red;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* end tray */
|
||||||
|
|
||||||
|
/* custom modules */
|
||||||
|
|
||||||
#custom-wlogout {
|
#custom-wlogout {
|
||||||
border: 3px solid $overlay1;
|
border: 3px solid $overlay1;
|
||||||
}
|
}
|
Loading…
Reference in a new issue