GTK 3.20 :: Clean code (#553)

* * Clean code.

* * Fixed PR code.
pull/562/head
Csaba Jakosa 2016-09-03 11:00:42 +02:00 committed by Dustin Falgout
parent c997dd3402
commit 67bf7e2697
8 changed files with 21 additions and 21 deletions

View File

@ -133,7 +133,7 @@
.gedit-bottom-panel-paned, .gedit-bottom-panel-paned,
.gedit-side-panel-paned, .gedit-side-panel-paned,
paned.titlebar { paned.titlebar {
margin-right: 0px; margin-right: 0;
} }
.gedit-bottom-panel-paned notebook { .gedit-bottom-panel-paned notebook {

View File

@ -33,11 +33,5 @@
&:disabled { background-color: transparent; } &:disabled { background-color: transparent; }
} }
} }
/*GtkNotebook.notebook {
border-right-width: 0;
border-bottom-width: 0;
border-left-width: 0;
}*/
} }
} }

View File

@ -48,7 +48,6 @@
-NemoPathbarButton-border-radius: $roundness; -NemoPathbarButton-border-radius: $roundness;
} }
} }
} // END toolbar } // END toolbar
/* Status Bar */ /* Status Bar */

View File

@ -296,7 +296,9 @@
//@extend %undecorated_button; //@extend %undecorated_button;
&:hover { background-color: $selected_bg_color; color: $selected_fg_color } &:hover { background-color: $selected_bg_color; color: $selected_fg_color }
&:active, &:selected { &, arrow { @extend %selected_items; } } &:active, &:selected { &, arrow { @extend %selected_items; } }
&:checked { color: $fg_color; } &:checked { color: $fg_color; }
// FIXME: temporary workaround // FIXME: temporary workaround
@ -308,6 +310,7 @@
&.flat arrow { &.flat arrow {
&.left { -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } &.left { -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
&.right { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } &.right { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
} }
} }

View File

@ -65,7 +65,7 @@
} }
} }
$_placesidebar_icons_opacity: 0.7; $_placesidebar_icons_opacity: .7;
placessidebar { placessidebar {
> viewport.frame { border-style: none; } > viewport.frame { border-style: none; }
@ -73,7 +73,7 @@
row { row {
// Needs overriding of the GtkListBoxRow padding // Needs overriding of the GtkListBoxRow padding
min-height: 36px; min-height: 36px;
padding: 0px; padding: 0;
// Using margins/padding directly in the SidebarRow // Using margins/padding directly in the SidebarRow
// will make the animation of the new bookmark row jump // will make the animation of the new bookmark row jump
@ -95,11 +95,13 @@
opacity: $_placesidebar_icons_opacity; // dim the device icons opacity: $_placesidebar_icons_opacity; // dim the device icons
&:dir(ltr) { padding-right: 8px; } &:dir(ltr) { padding-right: 8px; }
&:dir(rtl) { padding-left: 8px; } &:dir(rtl) { padding-left: 8px; }
} }
label.sidebar-label { label.sidebar-label {
&:dir(ltr) { padding-right: 2px; } &:dir(ltr) { padding-right: 2px; }
&:dir(rtl) { padding-left: 2px; } &:dir(rtl) { padding-left: 2px; }
} }

View File

@ -94,17 +94,17 @@ $suffix: if($variant == "dark", "-dark", "");
padding: $spacing - 1; padding: $spacing - 1;
border: none; border: none;
outline: none; outline: none;
transition: background-color 0.3s linear; transition: background-color .3s linear;
min-width: 88px; min-width: 88px;
min-height: 24px; min-height: 24px;
background-color: $switch_bg_color; background-color: $switch_bg_color;
color: $switch_fg_color; color: $switch_fg_color;
box-shadow: inset 1px -1px 0px rgba(0, 0, 0, 0.06), inset -1px 1px 0px rgba(0, 0, 0, 0.06); box-shadow: inset 1px -1px 0 alpha($dark_shadow, .06), inset -1px 1px 0 alpha($dark_shadow, .06);
slider { slider {
background-color: $switch_slider_bg_color; background-color: $switch_slider_bg_color;
transition: all 0.3s ease-in; transition: all 0.3s ease-in;
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.07), 1px 0px 2px 0px rgba(0, 0, 0, 0.07); box-shadow: 0 1px 2px 0 alpha($dark_shadow, .07), 1px 0 2px 0 alpha($dark_shadow, .07);
border-radius: $roundness; border-radius: $roundness;
} }
@ -116,7 +116,7 @@ $suffix: if($variant == "dark", "-dark", "");
slider { slider {
background-color: $white; background-color: $white;
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1); box-shadow: 0 1px 3px 0 alpha($dark_shadow, .1);
} }
} }

View File

@ -99,6 +99,7 @@
&:selected { &:selected {
&:focus, & { &:focus, & {
@extend %selected_items; @extend %selected_items;
border-radius: 0; border-radius: 0;
} }
@ -113,6 +114,7 @@
&:selected { &:selected {
color: mix($selected_fg_color, $selected_bg_color, .4); color: mix($selected_fg_color, $selected_bg_color, .4);
&:backdrop { color: mix($backdrop_selected_fg_color, $selected_bg_color, .3); } &:backdrop { color: mix($backdrop_selected_fg_color, $selected_bg_color, .3); }
} }