diff options
author | Adam Strzelecki <ono@java.pl> | 2015-11-30 15:38:58 +0100 |
---|---|---|
committer | Adam Strzelecki <ono@java.pl> | 2015-12-02 21:33:32 +0100 |
commit | 22b0dfbb35f10f22ef0485e289f44532d7a71863 (patch) | |
tree | 8fb55f74fa053914ab21719711fe74a2b036e182 /public/css | |
parent | 4a64ae4abf3d4ca4dc4ed9ae2373c9e48497bf73 (diff) | |
download | gitea-22b0dfbb35f10f22ef0485e289f44532d7a71863.tar.gz gitea-22b0dfbb35f10f22ef0485e289f44532d7a71863.zip |
CSS: Ensure Octicons are used with 16px font size
Semantic UI .icon 1em font-size has priority over .octicon 16px, resulting
octicons rendered at 14px font-size, which is not okay since Octicons are meant
to be shown sizes that are multiples of 16px.
Diffstat (limited to 'public/css')
-rwxr-xr-x | public/css/gogs.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index d58c4e2540..19a34b8fe2 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -5,7 +5,9 @@ font-style: normal; } .octicon, -.mega-octicon { +.mega-octicon, +.icon.octicon, +.icon.mega-octicon { font: normal normal normal 16px/1 octicons; display: inline-block; text-decoration: none; |