diff options
author | Bwko <bouwko@gmail.com> | 2017-01-27 07:10:21 +0100 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-01-27 14:10:21 +0800 |
commit | 4faf097fb9d07003b52d5f6e51ad3e624a5db062 (patch) | |
tree | 099f7293e7eae7f40180d7d81b730602893e52fa /public/css | |
parent | e08421017c50d881710f52c9fd942239a4a928ae (diff) | |
download | gitea-4faf097fb9d07003b52d5f6e51ad3e624a5db062.tar.gz gitea-4faf097fb9d07003b52d5f6e51ad3e624a5db062.zip |
Added webkit-font-smoothing (#763)
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/index.css | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/public/css/index.css b/public/css/index.css index d755e6127b..c636d17d5f 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -8,6 +8,7 @@ body { font-family: "Helvetica Neue", "Microsoft YaHei", Arial, Helvetica, sans-serif !important; background-color: #fff; overflow-y: scroll; + -webkit-font-smoothing: antialiased; } img { border-radius: 3px; @@ -1130,6 +1131,10 @@ footer .ui.language .menu { margin-top: -1px; font-size: 15px; } +.repository .navbar { + display: flex; + justify-content: space-between; +} .repository .navbar .ui.label { margin-top: -2px; margin-left: 7px; @@ -2926,10 +2931,6 @@ footer .ui.language .menu { width: 16px; text-align: center; } -.navbar { - display: flex; - justify-content: space-between; -} .ui.repository.list .item { padding-bottom: 25px; } |