nixos-configs/modules/ags/config/scss/wim-widgets/overview.scss

54 lines
1,014 B
SCSS
Raw Normal View History

.overview {
background-color: rgba($bgfull, 0.4);
border: 2px solid $contrast-bg;
border-radius: 10px;
2023-09-20 21:52:04 -04:00
.workspace {
2023-10-26 17:03:34 -04:00
padding: 4px 15px 4px 0;
2023-09-20 21:52:04 -04:00
border: 2px solid transparent;
border-radius: 10px;
&.active {
2023-09-22 14:47:37 -04:00
background-color: rgba(lighten($color: black, $amount: 15), 0.8);
2023-09-20 21:52:04 -04:00
border: 2px solid black;
}
}
.workspace .window {
2023-09-22 14:47:37 -04:00
background-color: $bgfull;
border-radius: 10px;
margin: 0 10px;
transition: min-width 0.2s ease-in-out,
min-height 0.2s ease-in-out,
border-color 0.2s ease-in-out,
font-size 0.2s ease-in-out;
}
.normal {
margin-bottom: 5px;
.workspace {
.window {
border: 2px solid #411C6C;
&.active {
border: 2px solid purple;
}
}
}
}
2023-10-26 17:03:34 -04:00
.special {
.workspace {
.window {
border: 2px solid lighten($color: black, $amount: 20);
&.active {
border: 2px solid purple;
}
}
}
}
}