aboutsummaryrefslogtreecommitdiff
path: root/.themes/oomox-Awkward/cinnamon/scss/sections/_desklets.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/_desklets.scss
parent21eea21ac0bc4f8cf1fd637e305c5f3b94218e30 (diff)
created a gtk oomox theme to match the terminal
Diffstat (limited to '.themes/oomox-Awkward/cinnamon/scss/sections/_desklets.scss')
-rw-r--r--.themes/oomox-Awkward/cinnamon/scss/sections/_desklets.scss65
1 files changed, 65 insertions, 0 deletions
diff --git a/.themes/oomox-Awkward/cinnamon/scss/sections/_desklets.scss b/.themes/oomox-Awkward/cinnamon/scss/sections/_desklets.scss
new file mode 100644
index 00000000..74f88664
--- /dev/null
+++ b/.themes/oomox-Awkward/cinnamon/scss/sections/_desklets.scss
@@ -0,0 +1,65 @@
+// desklets - the base .desklet selector is for 'undecorated' desklets however some subtle background themeing is desirable
+// to maintain visibility irrespctive of wallpaper and to allow for the highlighting scheme to work
+.desklet {
+ font-size: 0.9em;
+ padding: 8px;
+ color: $dark_fg_color;
+ border-radius: $roundness;
+ background-color: $dark_bg_color_trans;
+ &:highlight {
+ background-color: $selected_bg_color;
+ }
+}
+// these do not inherit from .desklet
+.desklet-with-borders {
+ @extend %desklet-shared;
+
+ font-size: 0.9em;
+ border-radius: $roundness;
+ &:highlight {
+ background-color: $selected_bg_color;
+ }
+}
+.desklet-with-borders-and-header {
+ @extend %desklet-shared;
+
+ font-size: 0.9em;
+ border-radius-bottomleft: $roundness;
+ border-radius-bottomright: $roundness;
+ &:highlight {
+ background-color: $selected_bg_color;
+ }
+}
+.desklet-header {
+ @extend %desklet-shared;
+
+ font-size: 1.2em;
+ border-radius-topleft: $roundness;
+ border-radius-topright: $roundness;
+ &:highlight {
+ background-color: $selected_bg_color;
+ }
+}
+.photoframe-box {
+ @extend %desklet-shared;
+
+ border-radius: $roundness;
+ &:highlight {
+ background-color: $selected_bg_color;
+ }
+}
+.desklet-drag-placeholder {
+ border: 2px solid $selected_bg_color;
+ background-color: $dark_bg_color_trans;
+ border-radius: $roundness;
+}
+.launcher {
+ padding: 1px;
+ transition-duration: 150;
+ .icon-box {
+ padding-top: 2px;
+ }
+}
+// inherits font characteristics from .desklet-header
+.clock-desklet-label {
+}