aboutsummaryrefslogtreecommitdiff
path: root/.themes/oomox-Awkward/cinnamon/scss/sections/_alt-tab.scss
diff options
context:
space:
mode:
authorVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2021-02-19 23:40:47 +0530
committerVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2021-02-19 23:40:47 +0530
commitff093188fe7450294cf14c6c94caf10f32f9f1b1 (patch)
treed558d139bbfaafa5d621034ff85dd563f7cfd423 /.themes/oomox-Awkward/cinnamon/scss/sections/_alt-tab.scss
parent21eea21ac0bc4f8cf1fd637e305c5f3b94218e30 (diff)
created a gtk oomox theme to match the terminal
Diffstat (limited to '.themes/oomox-Awkward/cinnamon/scss/sections/_alt-tab.scss')
-rw-r--r--.themes/oomox-Awkward/cinnamon/scss/sections/_alt-tab.scss66
1 files changed, 66 insertions, 0 deletions
diff --git a/.themes/oomox-Awkward/cinnamon/scss/sections/_alt-tab.scss b/.themes/oomox-Awkward/cinnamon/scss/sections/_alt-tab.scss
new file mode 100644
index 00000000..06e57e16
--- /dev/null
+++ b/.themes/oomox-Awkward/cinnamon/scss/sections/_alt-tab.scss
@@ -0,0 +1,66 @@
+// non 3D alt-tab options
+#altTabPopup {
+ padding: 8px;
+ spacing: 16px;
+}
+.switcher-list {
+ @extend %bg-grad-to-bottom;
+
+ border-radius: $roundness;
+ border: 1px solid $exterior_border;
+ padding: 16px;
+ color: $dark_fg_color;
+ .item-box {
+ padding: 8px;
+ border-radius: $roundness;
+ &:selected {
+ @extend %selected-bg-grad-to-bottom;
+
+ color: $selected_fg_color;
+ }
+ }
+ .thumbnail-box {
+ padding: 2px;
+ spacing: 4px;
+ color: $dark_fg_color;
+ }
+ .thumbnail {
+ min-width: 20em;
+ }
+ .separator {
+ width: 1px;
+ background-color: $selected_bg_color;
+ }
+}
+.switcher-list-item-container {
+ spacing: 8px;
+}
+.thumbnail-scroll-gradient-left {
+ background-gradient-direction: horizontal;
+ background-gradient-start: rgba(51, 51, 51, 1.0);
+ background-gradient-end: rgba(51, 51, 51, 0);
+ border-radius: $roundness;
+ border-radius-topright: 0;
+ border-radius-bottomright: 0;
+ width: 60px;
+}
+.thumbnail-scroll-gradient-right {
+ background-gradient-direction: horizontal;
+ background-gradient-start: rgba(51, 51, 51, 0);
+ background-gradient-end: rgba(51, 51, 51, 1.0);
+ border-radius: $roundness;
+ border-radius-topleft: 0;
+ border-radius-bottomleft: 0;
+ width: 60px;
+}
+.switcher-arrow {
+ border-color: rgba(0,0,0,0);
+ color: $dark_fg_color;
+ &:highlighted {
+ border-color: rgba(0,0,0,0);
+ color: $selected_fg_color;
+ }
+}
+.switcher-preview-backdrop {
+ background-color: rgba(25,25,25,0.65);
+}