Skip to content

Commit

Permalink
Make check boxes and radio buttons a little smaller
Browse files Browse the repository at this point in the history
This way they look more like native checkboxes and radio boxes on macOS and
Windows.
  • Loading branch information
techee committed Oct 2, 2022
1 parent a561697 commit 4a933f1
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
28 changes: 14 additions & 14 deletions Prof-Gnome/gtk-3.0/main-dark.css
Expand Up @@ -3623,9 +3623,9 @@ radio:hover
background-image: linear-gradient(to top,@button_color,shade(@button_color,0.97));
background-color: transparent;
color: alpha(@text_color,0.9);
margin: 0 6px;
min-height:14px;
min-width: 14px;
margin: 0 6px 2px 6px;
min-height:12px;
min-width: 12px;
-gtk-icon-source: none;
}
radio:checked,
Expand Down Expand Up @@ -3746,8 +3746,8 @@ popover radio:disabled
background-color: alpha(@button_color,0.4);
border-color: transparent;

min-height:14px;
min-width: 14px;
min-height:12px;
min-width: 12px;
}
popover radio:checked,
popover radio:active
Expand Down Expand Up @@ -3786,8 +3786,8 @@ menu menuitem radio:disabled
background-color: alpha(@button_color,0.4);
border-color: #333333;

min-height: 14px;
min-width: 14px;
min-height: 12px;
min-width: 12px;
}
menu menuitem radio:checked,
menu menuitem radio:active
Expand Down Expand Up @@ -3846,9 +3846,9 @@ check:hover
border: 1px solid;
border-radius: 4px;
color: alpha(@text_color,0.9);
margin: 0 6px;
min-height: 14px;
min-width: 14px;
margin: 0 6px 2px 6px;
min-height: 12px;
min-width: 12px;
border-color: shade(@borders,0.9);


Expand Down Expand Up @@ -3985,8 +3985,8 @@ popover check:disabled
background-color: alpha(@button_color,0.4);
border-color: transparent;

min-height: 14px;
min-width: 14px;
min-height: 12px;
min-width: 12px;
}
popover check:checked,
popover check:active
Expand Down Expand Up @@ -4024,8 +4024,8 @@ menu menuitem check:disabled
background-color: alpha(@button_color,0.4);
border-color: #333333;

min-height: 14px;
min-width: 14px;
min-height: 12px;
min-width: 12px;
}
menu menuitem check:checked,
menu menuitem check:active
Expand Down
28 changes: 14 additions & 14 deletions Prof-Gnome/gtk-3.0/main-light.css
Expand Up @@ -3615,9 +3615,9 @@ radio:hover
background-image: linear-gradient(to top,@button_color,shade(@button_color,0.97));
background-color: transparent;
color: alpha(@text_color,0.9);
margin: 0 6px;
min-height:14px;
min-width: 14px;
margin: 0 6px 2px 6px;
min-height:12px;
min-width: 12px;
-gtk-icon-source: none;
}
radio:checked,
Expand Down Expand Up @@ -3738,8 +3738,8 @@ popover radio:disabled
background-color: alpha(@button_color,0.4);
border-color: transparent;

min-height:14px;
min-width: 14px;
min-height:12px;
min-width: 12px;
}
popover radio:checked,
popover radio:active
Expand Down Expand Up @@ -3778,8 +3778,8 @@ menu menuitem radio:disabled
background-color: alpha(@button_color,0.4);
border-color: #cccccc;

min-height: 14px;
min-width: 14px;
min-height: 12px;
min-width: 12px;
}
menu menuitem radio:checked,
menu menuitem radio:active
Expand Down Expand Up @@ -3838,9 +3838,9 @@ check:hover
border: 1px solid;
border-radius: 4px;
color: alpha(@text_color,0.9);
margin: 0 6px;
min-height: 14px;
min-width: 14px;
margin: 0 6px 2px 6px;
min-height: 12px;
min-width: 12px;
border-color: shade(@borders,0.9);


Expand Down Expand Up @@ -3977,8 +3977,8 @@ popover check:disabled
background-color: alpha(@button_color,0.4);
border-color: transparent;

min-height: 14px;
min-width: 14px;
min-height: 12px;
min-width: 12px;
}
popover check:checked,
popover check:active
Expand Down Expand Up @@ -4016,8 +4016,8 @@ menu menuitem check:disabled
background-color: alpha(@button_color,0.4);
border-color: #cccccc;

min-height: 14px;
min-width: 14px;
min-height: 12px;
min-width: 12px;
}
menu menuitem check:checked,
menu menuitem check:active
Expand Down

0 comments on commit 4a933f1

Please sign in to comment.