* Minimal fix #452
parent
23fca70ae8
commit
8547accd74
|
@ -69,6 +69,7 @@
|
|||
button {
|
||||
min-height: 16px;
|
||||
min-width: 16px;
|
||||
padding: ($spacing - 1px);
|
||||
}
|
||||
|
||||
button:first-child {
|
||||
|
|
|
@ -381,7 +381,11 @@
|
|||
|
||||
.linked.vertical > & { @include linked_vertical_button(shade($bg_color, 1.2)); }
|
||||
|
||||
&.circular { // FIXME: aggregate to buttons
|
||||
&.circular,
|
||||
&.circular-button { // FIXME: aggregate to buttons
|
||||
padding: 0;
|
||||
min-width: 28px;
|
||||
min-height: 28px;
|
||||
border-radius: 9999px; // Fixed: https://github.com/GNOME/gtk/commit/a6409458f0d50d673a4dc370b9251993b7835b6b
|
||||
-gtk-outline-radius: 9999px;
|
||||
|
||||
|
@ -453,6 +457,12 @@
|
|||
}
|
||||
|
||||
&.vertical {
|
||||
button, entry {
|
||||
min-width: 0;
|
||||
padding-left: $spacing - 2px;
|
||||
padding-right: $spacing - 2px;
|
||||
}
|
||||
|
||||
entry {
|
||||
// reset all the other props since the spinbutton node is styled here
|
||||
border-radius: 0;
|
||||
|
@ -482,8 +492,8 @@
|
|||
button.combo {
|
||||
// otherwise the arrow placement is not symmetric
|
||||
min-width: 0;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
padding-left: $spacing + 2px;
|
||||
padding-right: $spacing + 2px;
|
||||
}
|
||||
|
||||
arrow {
|
||||
|
|
|
@ -198,6 +198,8 @@
|
|||
button.flat {
|
||||
min-height: 16px;
|
||||
min-width: 16px;
|
||||
padding: 0;
|
||||
|
||||
@extend %close_button;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,6 +8,16 @@
|
|||
@include exports("osd") {
|
||||
overlay.osd { background-color: transparent; }
|
||||
|
||||
button.osd {
|
||||
@include button($osd_bg, $osd_fg);
|
||||
|
||||
&.image-button {
|
||||
padding: 0;
|
||||
min-height: 36px;
|
||||
min-width: 36px;
|
||||
}
|
||||
}
|
||||
|
||||
.osd {
|
||||
background-color: $osd_bg;
|
||||
color: $osd_fg;
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
}
|
||||
|
||||
%column_header_button {
|
||||
padding: 0 6px;
|
||||
padding: ($spacing - 2px) ($spacing + 1px);
|
||||
border-radius: 0;
|
||||
background-image: none;
|
||||
text-shadow: none;
|
||||
|
|
Loading…
Reference in New Issue