Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
horst3180 committed Sep 21, 2015
2 parents 2413f6e + dee39f4 commit 519ff85
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion common/gnome-shell/3.18/gnome-shell-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions common/gnome-shell/3.18/gnome-shell.css
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
6 changes: 3 additions & 3 deletions common/gnome-shell/3.18/sass/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down

0 comments on commit 519ff85

Please sign in to comment.