Fixed issues
This commit is contained in:
parent
5ada212440
commit
17d96b5c9e
10 changed files with 117 additions and 55 deletions
|
@ -84,7 +84,7 @@
|
|||
& .folder-name-label { padding: $base_padding; color: $light_alt_fg_color; }
|
||||
|
||||
& .edit-folder-button {
|
||||
background-color: $light_divider_color;
|
||||
background-color: $light_fill_color;
|
||||
color: $light_alt_fg_color;
|
||||
border: none;
|
||||
padding: 0;
|
||||
|
@ -92,7 +92,7 @@
|
|||
height: 36px;
|
||||
border-radius: $circular_radius;
|
||||
|
||||
& > StIcon { icon-size: 16px; }
|
||||
& > StIcon { icon-size: $base_icon_size; }
|
||||
|
||||
&:hover { background-color: $light_divider_color; }
|
||||
&:checked, &:active { background-color: $light_track_color; }
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/* Buttons */
|
||||
|
||||
.button {
|
||||
min-height: $medium_size;
|
||||
padding: 0 16px;
|
||||
min-height: $small_size;
|
||||
padding: $container_padding $container_padding * 2;
|
||||
border-radius: $bt_radius;
|
||||
|
||||
&, .popup-menu & {
|
||||
|
@ -15,6 +15,19 @@
|
|||
}
|
||||
}
|
||||
|
||||
.icon-button {
|
||||
min-height: $small_size;
|
||||
min-width: $small_size;
|
||||
padding: $container_padding;
|
||||
border-radius: $circular_radius;
|
||||
|
||||
@include button(flat-normal);
|
||||
&:hover { @include button(flat-hover); }
|
||||
&:active { @include button(flat-active); }
|
||||
&:insensitive { @include button(flat-insensitive); }
|
||||
&:focus { @include button(flat-focus); }
|
||||
}
|
||||
|
||||
%osd_button {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
|
|
|
@ -3,25 +3,29 @@
|
|||
StEntry, %entry {
|
||||
min-height: $menuitem_size;
|
||||
padding: $base_padding / 2 $base_padding * 2 !important;
|
||||
// margin: 2px;
|
||||
color: $fg_color;
|
||||
caret-color: $fg_color;
|
||||
selection-background-color: $primary_color !important;
|
||||
selected-color: $light_fg_color !important;
|
||||
// @include font(subheading);
|
||||
|
||||
@include entry(normal);
|
||||
&:hover { @include entry(hover); }
|
||||
&:focus { @include entry(focus); }
|
||||
&:insensitive { @include entry(insensitive);}
|
||||
|
||||
StIcon { icon-size: $base_icon_size !important; }
|
||||
|
||||
StIcon.capslock-warning {
|
||||
icon-size: 16px;
|
||||
icon-size: $base_icon_size !important;
|
||||
warning-color: $warning_color;
|
||||
padding: 0 0;
|
||||
}
|
||||
|
||||
StIcon.peek-password {
|
||||
icon-size: 16px;
|
||||
icon-size: $base_icon_size !important;
|
||||
padding: 0 $base_padding;
|
||||
}
|
||||
|
||||
StLabel.hint-text {
|
||||
margin-left: $base_padding / 2;
|
||||
color: $alt_fg_color;
|
||||
|
|
|
@ -104,14 +104,16 @@
|
|||
// close button
|
||||
.message-close-button {
|
||||
color: $alt_fg_color;
|
||||
padding: 0;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
padding: 0 !important;
|
||||
height: 24px !important;
|
||||
width: 24px !important;
|
||||
border-radius: $circular_radius;
|
||||
|
||||
&:hover, &:active { color: $fg_color; }
|
||||
&:hover, &:focus { background-color: $divider_color; }
|
||||
&:active { background-color: $track_color; }
|
||||
|
||||
StIcon { icon-size: $base_icon_size; }
|
||||
}
|
||||
|
||||
// body
|
||||
|
|
|
@ -2,3 +2,19 @@
|
|||
.overview-controls {
|
||||
padding-bottom: 32px;
|
||||
}
|
||||
|
||||
%overview_scrollbar {
|
||||
StBin#trough {
|
||||
background-color: $light_divider_color;
|
||||
}
|
||||
|
||||
StButton#vhandle, StButton#hhandle {
|
||||
background-color: $light_hint_fg_color;
|
||||
&:hover { background-color: $light_alt_fg_color; }
|
||||
&:active { background-color: $light_fg_color; }
|
||||
}
|
||||
}
|
||||
|
||||
#overview {
|
||||
StScrollBar { @extend %overview_scrollbar; }
|
||||
}
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
|
||||
.icon-button, .button {
|
||||
padding: $container_padding;
|
||||
|
||||
StIcon { icon-size: $base_icon_size !important; }
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -53,7 +55,7 @@
|
|||
&:rtl > StBoxLayout { padding-right: $base_padding * 2.5; }
|
||||
|
||||
.quick-toggle-label { font-weight: bold; }
|
||||
.quick-toggle-icon, .quick-toggle-arrow { icon-size: $base_icon_size; }
|
||||
.quick-toggle-icon, .quick-toggle-arrow { icon-size: $base_icon_size !important; }
|
||||
}
|
||||
|
||||
.quick-menu-toggle {
|
||||
|
@ -86,7 +88,7 @@
|
|||
}
|
||||
|
||||
.quick-toggle-icon {
|
||||
icon-size: $base_icon_size;
|
||||
icon-size: $base_icon_size !important;
|
||||
}
|
||||
|
||||
.icon-button {
|
||||
|
|
|
@ -1,16 +1,4 @@
|
|||
%overview_scrollbar {
|
||||
StBin#trough {
|
||||
background-color: $light_divider_color;
|
||||
}
|
||||
|
||||
StButton#vhandle, StButton#hhandle {
|
||||
background-color: $light_hint_fg_color;
|
||||
&:hover { background-color: $light_alt_fg_color; }
|
||||
&:active { background-color: $light_fg_color; }
|
||||
}
|
||||
}
|
||||
|
||||
#overview {
|
||||
spacing: 24px;
|
||||
StScrollBar { @extend %overview_scrollbar; }
|
||||
}
|
||||
|
|
|
@ -56,20 +56,21 @@
|
|||
width: 24px;
|
||||
height: 24px;
|
||||
border-radius: $circular_radius;
|
||||
color: $light_fg_color !important;
|
||||
}
|
||||
|
||||
&:insensitive > StIcon {
|
||||
backround-color: $light_fill_color;
|
||||
color: $light_fg_color;
|
||||
backround-color: transparent !important;
|
||||
color: transparent !important;
|
||||
}
|
||||
|
||||
&:hover > StIcon {
|
||||
backround-color: $light_divider_color;
|
||||
color: $light_fg_color;
|
||||
backround-color: $light_divider_color !important;
|
||||
color: $light_fg_color !important;
|
||||
}
|
||||
|
||||
&:active > StIcon {
|
||||
backround-color: $light_track_color;
|
||||
color: $light_fg_color;
|
||||
backround-color: $light_track_color !important;
|
||||
color: $light_fg_color !important;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -188,6 +188,53 @@ window.background.csd {
|
|||
|
||||
> stack.background { background-color: $base_color; }
|
||||
}
|
||||
|
||||
preferencesgroup > box {
|
||||
button.background-preview-button {
|
||||
padding: $container_padding / 2;
|
||||
outline: 2px solid transparent;
|
||||
outline-offset: 0;
|
||||
border-radius: $bt_radius + $container_padding / 2;
|
||||
|
||||
&, &:hover, &:active, &:checked {
|
||||
background: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
outline-color: $alt_disabled_fg_color;
|
||||
}
|
||||
|
||||
&:active {
|
||||
outline-color: $alt_fg_color;
|
||||
}
|
||||
|
||||
&:checked {
|
||||
outline-color: $selected_bg_color;
|
||||
}
|
||||
}
|
||||
|
||||
flowbox.background-flowbox > flowboxchild {
|
||||
outline: 2px solid transparent;
|
||||
outline-offset: 0;
|
||||
border-radius: $bt_radius + 3px;
|
||||
padding: 3px;
|
||||
|
||||
&:hover {
|
||||
outline-color: $alt_disabled_fg_color;
|
||||
}
|
||||
|
||||
&:active {
|
||||
outline-color: $alt_fg_color;
|
||||
}
|
||||
|
||||
&:selected {
|
||||
outline-color: $selected_bg_color;
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -63,21 +63,6 @@ preferencesgroup > box {
|
|||
> box.single-line {
|
||||
min-height: 34px;
|
||||
}
|
||||
|
||||
button.background-preview-button {
|
||||
&, &:hover, &:active, &:checked {
|
||||
background: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
padding: $container_padding / 2;
|
||||
border: 2px solid transparent;
|
||||
border-radius: $bt_radius + $container_padding / 2;
|
||||
}
|
||||
|
||||
&:checked {
|
||||
border: 2px solid $selected_bg_color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -194,28 +179,28 @@ viewswitcher {
|
|||
margin: 0;
|
||||
|
||||
&.wide {
|
||||
border-spacing: $container_padding / 2;
|
||||
border-spacing: 0;
|
||||
|
||||
button.toggle {
|
||||
> button.toggle {
|
||||
margin: 8px 0;
|
||||
}
|
||||
}
|
||||
|
||||
&.narrow button.toggle {
|
||||
&.narrow > button.toggle {
|
||||
border-radius: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
button.toggle {
|
||||
> button.toggle {
|
||||
font-weight: normal;
|
||||
padding: 0;
|
||||
|
||||
> stack > box {
|
||||
&.narrow {
|
||||
font-size: 0.75rem;
|
||||
padding-top: $container_padding + 1px;
|
||||
padding-bottom: $container_padding - 1px;
|
||||
border-spacing: $container_padding - 2px;
|
||||
padding-top: $container_padding;
|
||||
padding-bottom: $container_padding;
|
||||
border-spacing: 0;
|
||||
|
||||
> stack > label {
|
||||
padding-left: $container_padding + 2px;
|
||||
|
@ -225,7 +210,12 @@ viewswitcher {
|
|||
|
||||
&.wide {
|
||||
padding: 0 $container_padding * 2;
|
||||
border-spacing: $container_padding;
|
||||
border-spacing: 0;
|
||||
|
||||
> label, > indicatorbin > image {
|
||||
padding-left: $container_padding / 2;
|
||||
padding-right: $container_padding / 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -251,7 +241,6 @@ indicatorbin {
|
|||
min-width: $container_padding * 2;
|
||||
min-height: $container_padding * 2;
|
||||
border-radius: $circular_radius;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
> indicator {
|
||||
|
|
Loading…
Reference in a new issue