diff options
author | Antoine GIRARD <sapk@users.noreply.github.com> | 2017-04-07 16:50:40 +0200 |
---|---|---|
committer | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-04-07 22:50:40 +0800 |
commit | d9db1882745baf44e16375eb1dc4733bf2989848 (patch) | |
tree | 71bdaab84cc885055ab1f2f0160bb465ac249166 /public/less | |
parent | e0df611cbc44360082d886106c4f2d4130c3dd81 (diff) | |
download | gitea-d9db1882745baf44e16375eb1dc4733bf2989848.tar.gz gitea-d9db1882745baf44e16375eb1dc4733bf2989848.zip |
Fix #1418 (#1456)
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/_repository.less | 64 |
1 files changed, 11 insertions, 53 deletions
diff --git a/public/less/_repository.less b/public/less/_repository.less index 7fadc21a86..7f36274a2c 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -1363,7 +1363,7 @@ } } .list { - .item { + > .item { .green { color: #21BA45 !important; } @@ -1371,7 +1371,6 @@ border-top: 1px solid #eaeaea; padding:1rem; margin: 15px -1rem -1rem -1rem; - min-height: 60px; } > .mega-octicon { display: table-cell; @@ -1381,6 +1380,13 @@ padding: 0 0 0 .5em; vertical-align: top; } + .info { + margin-top: 10px; + .tab.segment { + border: none; + padding: 10px 0 0; + } + } } &.key{ .meta { @@ -1388,57 +1394,9 @@ color: #666; } } - } - .hook.list { - > .item:not(:first-child) { - border-top: 1px solid #eaeaea; - } - .item { - padding: 10px 20px; - .octicon, - .fa { - width: 20px; - text-align: center; - } - a { - .dont-break-out; - } - } - } - .hook.history.list { - .item { - padding-left: 13px; - .meta { - .ui.right { - margin-top: 5px; - .time { - font-size: 12px; - } - } - } - .info { - margin-top: 10px; - .tabular.menu { - .item { - font-weight: 500; - } - } - .tab.segment { - border: none; - padding: 0; - padding-top: 10px; - box-shadow: none; - > * { - color: #666; - } - pre { - word-wrap: break-word; - .hljs { - padding: 0; - background-color: inherit; - } - } - } + &.email { + > .item:not(:first-child) { + min-height: 60px; } } } |