aboutsummaryrefslogtreecommitdiff
path: root/.themes/caelus/cinnamon/scss/sections/_tile-hud.scss
diff options
context:
space:
mode:
authordacctal <120422854+dacctal@users.noreply.github.com>2026-03-05 01:21:45 +0000
committerdacctal <120422854+dacctal@users.noreply.github.com>2026-03-05 01:21:45 +0000
commit69a722cfd33076a4d63f1d49e52bed427453eabe (patch)
tree56545e93c12a8232058a0ab2b258546418656e03 /.themes/caelus/cinnamon/scss/sections/_tile-hud.scss
initial commit
Diffstat (limited to '.themes/caelus/cinnamon/scss/sections/_tile-hud.scss')
-rw-r--r--.themes/caelus/cinnamon/scss/sections/_tile-hud.scss59
1 files changed, 59 insertions, 0 deletions
diff --git a/.themes/caelus/cinnamon/scss/sections/_tile-hud.scss b/.themes/caelus/cinnamon/scss/sections/_tile-hud.scss
new file mode 100644
index 0000000..35f5ed8
--- /dev/null
+++ b/.themes/caelus/cinnamon/scss/sections/_tile-hud.scss
@@ -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;
+ }
+}