diff options
author | Stefan <Stefan-Code@users.noreply.github.com> | 2015-02-08 17:38:10 +0100 |
---|---|---|
committer | Stefan <Stefan-Code@users.noreply.github.com> | 2015-02-08 17:38:10 +0100 |
commit | 85f384f271b3d6bd6304c78bbeb68c278b198b61 (patch) | |
tree | e2c2bca51c8778976f35e7b2ba036b8fcd238877 | |
parent | ba77a3b0b4bfcc418301c5069d9dd57d05ea23c3 (diff) | |
download | gitea-85f384f271b3d6bd6304c78bbeb68c278b198b61.tar.gz gitea-85f384f271b3d6bd6304c78bbeb68c278b198b61.zip |
Updated gogs.css - monospace font for hash
Updated gogs.css to use monospaced font for sha hash label in repository view to make it look nicer because of equal label width.
-rw-r--r-- | public/ng/less/gogs/repository.less | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/public/ng/less/gogs/repository.less b/public/ng/less/gogs/repository.less index 09691ee8bf..59513c77c7 100644 --- a/public/ng/less/gogs/repository.less +++ b/public/ng/less/gogs/repository.less @@ -247,6 +247,9 @@ } #repo-files-table { margin-bottom: 20px; + .sha .label { + font-family: Monaco,Menlo,Consolas,"Courier New",monospace; + } th, td { text-align: left; line-height: 32px; |