diff options
author | Unknwon <u@gogs.io> | 2017-02-28 12:42:16 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-02-28 12:42:16 -0500 |
commit | dd649eb4cc8dc6f1edc7168607bddb9dd6dde0be (patch) | |
tree | a87fc48478060fd061ad05599141871bdd4befed /public | |
parent | d43f5f17fd1e07230ade010116acabdc2dde27b6 (diff) |
admin: fix template error
Also a try to display key-value pairs in table.
Diffstat (limited to 'public')
-rw-r--r-- | public/css/gogs.css | 7 | ||||
-rw-r--r-- | public/less/_admin.less | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index 6dc61b41..92b26e14 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -3019,6 +3019,13 @@ footer .ui.language .menu { .admin.config #test-mail-btn { margin-left: 5px; } +.admin.config table tbody tr td:first-child { + font-weight: bold; +} +.admin.config pre { + background-color: #f7f7f7; + padding: 5px; +} .explore { padding-top: 15px; padding-bottom: 80px; diff --git a/public/less/_admin.less b/public/less/_admin.less index eab7b15e..24f13ba5 100644 --- a/public/less/_admin.less +++ b/public/less/_admin.less @@ -62,5 +62,12 @@ #test-mail-btn { margin-left: 5px; } + table tbody tr td:first-child { + font-weight: bold; + } + pre { + background-color: #f7f7f7; + padding: 5px; + } } } |