aboutsummaryrefslogtreecommitdiff
path: root/.themes/MikunoNaka/cinnamon/scss/sections/_notifications.scss
diff options
context:
space:
mode:
authorVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2021-02-21 19:21:46 +0530
committerVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2021-02-21 19:21:46 +0530
commit158b6cd4efe058b1e21a020f3861c610818a1a67 (patch)
treefd35be35323cc8b9785e86f3580936813967f2e7 /.themes/MikunoNaka/cinnamon/scss/sections/_notifications.scss
parent1b3658c85f5a5a25643da0cc417c70986b7caa6a (diff)
Tweaked the custom gtk theme
Diffstat (limited to '.themes/MikunoNaka/cinnamon/scss/sections/_notifications.scss')
-rw-r--r--.themes/MikunoNaka/cinnamon/scss/sections/_notifications.scss91
1 files changed, 91 insertions, 0 deletions
diff --git a/.themes/MikunoNaka/cinnamon/scss/sections/_notifications.scss b/.themes/MikunoNaka/cinnamon/scss/sections/_notifications.scss
new file mode 100644
index 00000000..9bd5097e
--- /dev/null
+++ b/.themes/MikunoNaka/cinnamon/scss/sections/_notifications.scss
@@ -0,0 +1,91 @@
+// notification system
+#notification {
+ @extend %bg-grad-to-right;
+
+ border-radius: $roundness;
+ border: 1px solid $exterior_border;
+ padding: 8px;
+ spacing-rows: 5px;
+ spacing-columns: 10px;
+ margin-from-right-edge-of-screen: 20px;
+ width: 34em;
+ color: $dark_fg_color;
+ &.multi-line-notification {
+ padding-bottom: 8px;
+ color: $dark_fg_color;
+ }
+ StEntry {
+ @extend %dialog-entry;
+
+ &:focus {
+ border: 1px solid $selected_border;
+ }
+ }
+ .url-highlighter {
+ link-color: $link_color;
+ }
+}
+.notification-with-image {
+ min-height: 159px;
+ color: $dark_fg_color;
+}
+#notification-scrollview {
+ max-height: 10em;
+ > {
+ .top-shadow {
+ height: 1em;
+ }
+ .bottom-shadow {
+ height: 1em;
+ }
+ }
+ &:ltr > StScrollBar {
+ padding-left: 6px;
+ }
+ &:rtl > StScrollBar {
+ padding-right: 6px;
+ }
+}
+#notification-body {
+ spacing: 4px;
+}
+#notification-actions {
+ spacing: 8px;
+}
+.notification-button {
+ @extend %shared-button;
+
+ border-radius: $roundness;
+ min-width: 5em;
+ min-height: 1em;
+ padding: $spacing_plus2;
+ &:hover {
+ @extend %shared-button-hover;
+ }
+ &:focus {
+ color: $selected_fg_color;
+ }
+ &:active {
+ @extend %shared-button-active;
+ }
+}
+.notification-icon-button {
+ @extend %shared-button;
+
+ border-radius: $roundness;
+ min-width: 2em;
+ min-height: 2em;
+ padding: $spacing_plus2;
+ &:hover {
+ @extend %shared-button-hover;
+ }
+ &:focus {
+ color: $selected_fg_color;
+ }
+ &:active {
+ @extend %shared-button-active;
+ }
+ > StIcon {
+ icon-size: 1.5em;
+ }
+}