From 2f94d4ca69588114a8032196893d4c3901558793 Mon Sep 17 00:00:00 2001
From: Csaba Jakosa <megax@yeahunter.hu>
Date: Tue, 25 Oct 2016 12:43:37 +0200
Subject: [PATCH] [GTK 3.20] Fixed notebook asymmetrical padding

* * Fixed notebook symmetrical padding.

* * Fixed button left margin.
---
 src/gtk-3.20/scss/widgets/_notebook.scss | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/gtk-3.20/scss/widgets/_notebook.scss b/src/gtk-3.20/scss/widgets/_notebook.scss
index f5cc77a..6e33f3a 100644
--- a/src/gtk-3.20/scss/widgets/_notebook.scss
+++ b/src/gtk-3.20/scss/widgets/_notebook.scss
@@ -155,7 +155,7 @@
                 > box,
                 > label,
                 > widget > box {
-                    padding: ($spacing - 1px) ($spacing * 2); // top/bottom | left/right
+                    padding: $spacing $spacing * 2; // top/bottom | left/right
                     border-width: 2px;
                     border-style: solid;
                     border-color: transparent;
@@ -166,7 +166,7 @@
                     > box,
                     > label,
                     > widget > box {
-                        padding: ($spacing - 1px) ($spacing * 2) ($spacing - 1px) ($spacing * 3); // top | right | bottom | left
+                        padding: $spacing $spacing * 2; // top | right | bottom | left
                     }
                 }
 
@@ -178,7 +178,7 @@
                     min-height: 16px;
                     min-width: 16px;
                     padding: 0;
-                    margin-left: $spacing * 3;
+                    margin-left: $spacing * 2;
                     border: 1px solid transparent;
                     transition: all .1s linear;
                 }