1
0
mirror of https://github.com/horst3180/arc-theme.git synced 2024-09-29 22:40:44 +00:00
This commit is contained in:
Horst3180 2015-09-22 00:47:39 +02:00
commit 519ff85f86
3 changed files with 6 additions and 6 deletions

View File

@ -192,7 +192,7 @@ StScrollBar {
border-bottom-width: 0; border-bottom-width: 0;
color: #BAC3CF; color: #BAC3CF;
background-color: rgba(53, 57, 69, 0.95); 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 { .modal-dialog-linked-button:hover {
background-color: rgba(64, 69, 83, 0.95); } background-color: rgba(64, 69, 83, 0.95); }
.modal-dialog-linked-button:focus { .modal-dialog-linked-button:focus {

View File

@ -185,10 +185,10 @@ StScrollBar {
.modal-dialog .modal-dialog-content-box { .modal-dialog .modal-dialog-content-box {
padding: 20px 10px 10px 10px; } padding: 20px 10px 10px 10px; }
.modal-dialog-linked-button { .modal-dialog-linked-button {
height: 38px; height: 39px;
padding: 0; padding: 0;
box-shadow: inset 0 0 black; box-shadow: inset 0 0 black;
border-top-width: 1px; border-top-width: 0px;
border-bottom-width: 0; border-bottom-width: 0;
color: #BAC3CF; color: #BAC3CF;
background-color: rgba(53, 57, 69, 0.95); background-color: rgba(53, 57, 69, 0.95);

View File

@ -213,15 +213,15 @@ StScrollBar {
} }
&-linked-button { &-linked-button {
height: 38px; height: if($variant=='light', 39px, 38px);
padding: 0; padding: 0;
box-shadow: inset 0 0 black; box-shadow: inset 0 0 black;
border-top-width: 1px; border-top-width: if($variant=='light', 0px, 1px);
border-bottom-width: 0; border-bottom-width: 0;
color: $osd_fg_color; color: $osd_fg_color;
background-color: $osd_bg_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%); } &:hover { background-color: lighten($osd_bg_color, 5%); }
&:focus { color: $selected_bg_color; } &:focus { color: $selected_bg_color; }