Generate Iceberg GTK theme and icons with oomox

This commit is contained in:
David Todd
2021-01-14 10:44:33 -06:00
parent 5778151273
commit 458abbd4e4
3819 changed files with 59724 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
// on screen preview of windows tiling placement
.tile-preview {
@extend %tile-shared;
&.snap {
@extend %tile-shared-snap;
}
}
.tile-hud {
@extend %tile-shared;
&.snap {
@extend %tile-shared-snap;
}
&:top {
border-top-width: 0;
border-radius: 0 0 10px 10px;
}
&:bottom {
border-bottom-width: 0;
border-radius: $roundness $roundness 0 0;
}
&:left {
border-left-width: 0;
border-radius: 0 10px 10px 0;
}
&:right {
border-right-width: 0;
border-radius: 10px 0 0 10px;
}
&:top-left {
border-top-width: 0;
border-left-width: 0;
border-radius: 0 0 10px 0;
}
&:top-right {
border-top-width: 0;
border-right-width: 0;
border-radius: 0 0 0 10px;
}
&:bottom-left {
border-bottom-width: 0;
border-left-width: 0;
border-radius: 0 10px 0 0;
}
&:bottom-right {
border-bottom-width: 0;
border-right-width: 0;
border-radius: 10px 0 0 0;
}
}