[GTK 3.20] Fixed notebook asymmetrical padding
* * Fixed notebook symmetrical padding. * * Fixed button left margin.pull/617/head
parent
023bd6f646
commit
2f94d4ca69
|
@ -155,7 +155,7 @@
|
||||||
> box,
|
> box,
|
||||||
> label,
|
> label,
|
||||||
> widget > box {
|
> widget > box {
|
||||||
padding: ($spacing - 1px) ($spacing * 2); // top/bottom | left/right
|
padding: $spacing $spacing * 2; // top/bottom | left/right
|
||||||
border-width: 2px;
|
border-width: 2px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
|
@ -166,7 +166,7 @@
|
||||||
> box,
|
> box,
|
||||||
> label,
|
> label,
|
||||||
> widget > box {
|
> 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-height: 16px;
|
||||||
min-width: 16px;
|
min-width: 16px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin-left: $spacing * 3;
|
margin-left: $spacing * 2;
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
transition: all .1s linear;
|
transition: all .1s linear;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue