Skip to content

Commit

Permalink
[Gtk-3.20] Optimized notebook padding
Browse files Browse the repository at this point in the history
  • Loading branch information
megax authored and khurshid-alam committed Oct 24, 2016
1 parent 7ac68f6 commit 023bd6f
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/gtk-3.20/scss/widgets/_notebook.scss
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
> box,
> label,
> widget > box {
padding: ($spacing + 2) ($spacing * 3); // top/bottom | left/right
padding: ($spacing - 1px) ($spacing * 2); // top/bottom | left/right
border-width: 2px;
border-style: solid;
border-color: transparent;
Expand All @@ -166,7 +166,7 @@
> box,
> label,
> widget > box {
padding: ($spacing + 2) ($spacing * 2) ($spacing + 2) ($spacing * 3); // top | right | bottom | left
padding: ($spacing - 1px) ($spacing * 2) ($spacing - 1px) ($spacing * 3); // top | right | bottom | left
}
}

Expand Down Expand Up @@ -322,7 +322,9 @@
border-left-color: $selected_bg_color;
outline: none;

> box, > label {
> box,
> label,
> widget > box {
border-left-color: $selected_bg_color;
}

Expand Down Expand Up @@ -352,7 +354,9 @@
border-top-color: $selected_bg_color;
outline: none;

> box, > label {
> box,
> label,
> widget > box {
border-top-color: $selected_bg_color;
}

Expand Down Expand Up @@ -382,7 +386,9 @@
border-right-color: $selected_bg_color;
outline: none;

> box, > label {
> box,
> label,
> widget > box {
border-right-color: $selected_bg_color;
}

Expand Down

0 comments on commit 023bd6f

Please sign in to comment.