diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-09-23 13:06:25 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-09-23 13:06:25 -0400 |
commit | ebb05475ed15fffc37145799ce7c72b65ccdbfc5 (patch) | |
tree | 013ad9450ad03cb84b8f0f68d433365e57a37468 /public | |
parent | a11ed51bbbdde56967e1499325ae85d9d86712e7 (diff) | |
download | gitea-ebb05475ed15fffc37145799ce7c72b65ccdbfc5.tar.gz gitea-ebb05475ed15fffc37145799ce7c72b65ccdbfc5.zip |
Fix #495 and cannot view repository by tag
Diffstat (limited to 'public')
-rw-r--r-- | public/ng/css/ui.css | 3 | ||||
-rw-r--r-- | public/ng/less/ui/reset.less | 6 |
2 files changed, 4 insertions, 5 deletions
diff --git a/public/ng/css/ui.css b/public/ng/css/ui.css index f3f6eded79..5dc3cc0408 100644 --- a/public/ng/css/ui.css +++ b/public/ng/css/ui.css @@ -151,7 +151,8 @@ code, kbd, pre, samp { - font: 14px Consolas, "Liberation Mono", Menlo, Courier, monospace; + font-family: monospace, monospace; + font-size: 1em; } .text-left { text-align: left; diff --git a/public/ng/less/ui/reset.less b/public/ng/less/ui/reset.less index 8ff45d694d..0e7a50e408 100644 --- a/public/ng/less/ui/reset.less +++ b/public/ng/less/ui/reset.less @@ -193,21 +193,19 @@ code, kbd, pre, samp { - font: 14px Consolas, "Liberation Mono", Menlo, Courier, monospace; + font-family: monospace, monospace; + font-size: 1em; } .text-left { text-align: left; } - .text-right { text-align: right; } - .text-center { text-align: center; } - .list-no-style { list-style: none; } |