Skip to content

Commit

Permalink
fix asymmetric circular buttons (fix #728)
Browse files Browse the repository at this point in the history
  • Loading branch information
horst3180 committed Mar 2, 2017
1 parent 81c4f01 commit 947a0ad
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 14 deletions.
5 changes: 3 additions & 2 deletions common/gtk-3.0/3.20/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -2829,8 +2829,9 @@ popover.background.touch-selection, .csd popover.background.touch-selection {
button.circular, button.nautilus-circular-button.image-button,
button.circular-button {
padding: 0;
min-width: 26px;
min-height: 26px;
min-width: 16px;
min-height: 24px;
padding: 2px 6px;
border-radius: 50%;
-gtk-outline-radius: 50%; }
button.circular label, button.nautilus-circular-button.image-button label,
Expand Down
5 changes: 3 additions & 2 deletions common/gtk-3.0/3.20/gtk-darker.css
Original file line number Diff line number Diff line change
Expand Up @@ -2828,8 +2828,9 @@ popover.background.touch-selection, .csd popover.background.touch-selection {
button.circular, button.nautilus-circular-button.image-button,
button.circular-button {
padding: 0;
min-width: 26px;
min-height: 26px;
min-width: 16px;
min-height: 24px;
padding: 2px 6px;
border-radius: 50%;
-gtk-outline-radius: 50%; }
button.circular label, button.nautilus-circular-button.image-button label,
Expand Down
5 changes: 3 additions & 2 deletions common/gtk-3.0/3.20/gtk-solid-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -2829,8 +2829,9 @@ popover.background.touch-selection, .csd popover.background.touch-selection {
button.circular, button.nautilus-circular-button.image-button,
button.circular-button {
padding: 0;
min-width: 26px;
min-height: 26px;
min-width: 16px;
min-height: 24px;
padding: 2px 6px;
border-radius: 50%;
-gtk-outline-radius: 50%; }
button.circular label, button.nautilus-circular-button.image-button label,
Expand Down
5 changes: 3 additions & 2 deletions common/gtk-3.0/3.20/gtk-solid-darker.css
Original file line number Diff line number Diff line change
Expand Up @@ -2828,8 +2828,9 @@ popover.background.touch-selection, .csd popover.background.touch-selection {
button.circular, button.nautilus-circular-button.image-button,
button.circular-button {
padding: 0;
min-width: 26px;
min-height: 26px;
min-width: 16px;
min-height: 24px;
padding: 2px 6px;
border-radius: 50%;
-gtk-outline-radius: 50%; }
button.circular label, button.nautilus-circular-button.image-button label,
Expand Down
5 changes: 3 additions & 2 deletions common/gtk-3.0/3.20/gtk-solid.css
Original file line number Diff line number Diff line change
Expand Up @@ -2832,8 +2832,9 @@ popover.background.touch-selection, .csd popover.background.touch-selection {
button.circular, button.nautilus-circular-button.image-button,
button.circular-button {
padding: 0;
min-width: 26px;
min-height: 26px;
min-width: 16px;
min-height: 24px;
padding: 2px 6px;
border-radius: 50%;
-gtk-outline-radius: 50%; }
button.circular label, button.nautilus-circular-button.image-button label,
Expand Down
5 changes: 3 additions & 2 deletions common/gtk-3.0/3.20/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -2832,8 +2832,9 @@ popover.background.touch-selection, .csd popover.background.touch-selection {
button.circular, button.nautilus-circular-button.image-button,
button.circular-button {
padding: 0;
min-width: 26px;
min-height: 26px;
min-width: 16px;
min-height: 24px;
padding: 2px 6px;
border-radius: 50%;
-gtk-outline-radius: 50%; }
button.circular label, button.nautilus-circular-button.image-button label,
Expand Down
5 changes: 3 additions & 2 deletions common/gtk-3.0/3.20/sass/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3031,8 +3031,9 @@ colorchooser .popover.osd { border-radius: 3px; }
button.circular,
button.circular-button {
padding: 0;
min-width: 26px;
min-height: 26px;
min-width: 16px;
min-height: 24px;
padding: 2px 6px;
border-radius: 50%;
-gtk-outline-radius: 50%;

Expand Down

0 comments on commit 947a0ad

Please sign in to comment.