aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorHorst31802015-09-22 00:47:39 +0200
committerHorst31802015-09-22 00:47:39 +0200
commit519ff85f86a1da78ec2c4eb25dce5f4dd50f95a7 (patch)
treeacf63c01507e4b643c5dbb589ad5f2b518388efb /common
parent2413f6e50d5533450352d567cb4d7241c20a4e15 (diff)
parentdee39f4419c6826a90f807914fbf4328144e89bb (diff)
downloadsolarc-theme-519ff85f86a1da78ec2c4eb25dce5f4dd50f95a7.tar.gz
solarc-theme-519ff85f86a1da78ec2c4eb25dce5f4dd50f95a7.tar.xz
solarc-theme-519ff85f86a1da78ec2c4eb25dce5f4dd50f95a7.zip
Merge branch 'master' of https://github.com/horst3180/Arc-theme
Diffstat (limited to 'common')
-rw-r--r--common/gnome-shell/3.18/gnome-shell-dark.css2
-rw-r--r--common/gnome-shell/3.18/gnome-shell.css4
-rw-r--r--common/gnome-shell/3.18/sass/_common.scss6
3 files changed, 6 insertions, 6 deletions
diff --git a/common/gnome-shell/3.18/gnome-shell-dark.css b/common/gnome-shell/3.18/gnome-shell-dark.css
index a730892..f0d98b6 100644
--- a/common/gnome-shell/3.18/gnome-shell-dark.css
+++ b/common/gnome-shell/3.18/gnome-shell-dark.css
@@ -192,7 +192,7 @@ StScrollBar {
border-bottom-width: 0;
color: #BAC3CF;
background-color: rgba(53, 57, 69, 0.95);
- border-color: rgba(42, 45, 55, 0.95); }
+ border-color: rgba(35, 38, 46, 0.95); }
.modal-dialog-linked-button:hover {
background-color: rgba(64, 69, 83, 0.95); }
.modal-dialog-linked-button:focus {
diff --git a/common/gnome-shell/3.18/gnome-shell.css b/common/gnome-shell/3.18/gnome-shell.css
index d00af97..56d1e01 100644
--- a/common/gnome-shell/3.18/gnome-shell.css
+++ b/common/gnome-shell/3.18/gnome-shell.css
@@ -185,10 +185,10 @@ StScrollBar {
.modal-dialog .modal-dialog-content-box {
padding: 20px 10px 10px 10px; }
.modal-dialog-linked-button {
- height: 38px;
+ height: 39px;
padding: 0;
box-shadow: inset 0 0 black;
- border-top-width: 1px;
+ border-top-width: 0px;
border-bottom-width: 0;
color: #BAC3CF;
background-color: rgba(53, 57, 69, 0.95);
diff --git a/common/gnome-shell/3.18/sass/_common.scss b/common/gnome-shell/3.18/sass/_common.scss
index c1d2a5a..fc818a7 100644
--- a/common/gnome-shell/3.18/sass/_common.scss
+++ b/common/gnome-shell/3.18/sass/_common.scss
@@ -213,15 +213,15 @@ StScrollBar {
}
&-linked-button {
- height: 38px;
+ height: if($variant=='light', 39px, 38px);
padding: 0;
box-shadow: inset 0 0 black;
- border-top-width: 1px;
+ border-top-width: if($variant=='light', 0px, 1px);
border-bottom-width: 0;
color: $osd_fg_color;
background-color: $osd_bg_color;
- border-color: darken($osd_bg_color, 5%);
+ border-color: if($variant=='light', darken($osd_bg_color, 5%), darken($osd_bg_color, 8%));
&:hover { background-color: lighten($osd_bg_color, 5%); }
&:focus { color: $selected_bg_color; }