diff options
Diffstat (limited to '.config/ags/widget/overview/overview.scss')
| -rw-r--r-- | .config/ags/widget/overview/overview.scss | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.config/ags/widget/overview/overview.scss b/.config/ags/widget/overview/overview.scss new file mode 100644 index 0000000..c0c4b13 --- /dev/null +++ b/.config/ags/widget/overview/overview.scss @@ -0,0 +1,34 @@ +window#overview .overview { + @include floating-widget; + @include spacing; + + .workspace { + &.active>widget { + border-color: $primary-bg + } + + >widget { + @include widget; + border-radius: if($radius ==0, 0, $radius + $padding); + + &:hover { + background-color: $hover-bg; + } + + &:drop(active) { + border-color: $primary-bg; + } + } + } + + .client { + @include button; + border-radius: $radius; + margin: $padding; + + &.hidden { + @include hidden; + transition: 0; + } + } +} |
