diff options
author | 无闻 <u@gogs.io> | 2015-03-19 17:02:21 -0400 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2015-03-19 17:02:21 -0400 |
commit | 7fe68d3db70edfb960ecdbaca688ba2c95219b5c (patch) | |
tree | 71924756d3463f6b0ae7a1452a83a19f336fbfe2 /public | |
parent | 7cf05645873634cd926bb16ff880840330305d5b (diff) | |
parent | ea9cf5ec8c231cadc30eb33069cc76447bf0cf14 (diff) |
Merge pull request #1092 from sapk/fix-dashboard-navbar
Fix the little default in the navbar of the dashboard
Diffstat (limited to 'public')
-rw-r--r-- | public/ng/css/gogs.css | 3 | ||||
-rw-r--r-- | public/ng/less/gogs/dashboard.less | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/public/ng/css/gogs.css b/public/ng/css/gogs.css index 43931e94..fd1fb593 100644 --- a/public/ng/css/gogs.css +++ b/public/ng/css/gogs.css @@ -732,7 +732,8 @@ ol.linenums { #dashboard-header > .menu-line > li.right > a { font-size: 1.2em; color: #444444; - padding: .4em .8em; + margin: -12px 0px; + padding: 22px 0.8em; } #dashboard-header > .menu-line > li.right > a:hover { background-color: transparent; diff --git a/public/ng/less/gogs/dashboard.less b/public/ng/less/gogs/dashboard.less index 435020fd..62764c48 100644 --- a/public/ng/less/gogs/dashboard.less +++ b/public/ng/less/gogs/dashboard.less @@ -27,7 +27,8 @@ > a { font-size: 1.2em; color: @dashboardHeaderLinkColor; - padding: .4em .8em; + margin: -12px 0px; + padding: 22px 0.8em; &:hover { background-color: transparent; color: @dashboardHeaderLinkHoverColor; |