diff options
author | Justin Nuß <justin.nuss@hmmh.de> | 2014-07-24 12:29:37 +0200 |
---|---|---|
committer | Justin Nuß <justin.nuss@hmmh.de> | 2014-07-24 12:29:37 +0200 |
commit | 967856f36ebd2d6216ceb2299b5399f7d25e86e9 (patch) | |
tree | bfde3326df1efcda39927bea2b44e9dcc0d436e5 /public | |
parent | 3c025b395077292a721419942f997311ef575fd9 (diff) | |
parent | a76a948a029f46697a0e2327ea6ca86872a760d7 (diff) | |
download | gitea-967856f36ebd2d6216ceb2299b5399f7d25e86e9.tar.gz gitea-967856f36ebd2d6216ceb2299b5399f7d25e86e9.zip |
Merge branch 'dev' into feature/attachments
Conflicts:
models/issue.go
routers/repo/issue.go
Diffstat (limited to 'public')
-rwxr-xr-x | public/css/gogs.css | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index c6554b7803..710d0c20b1 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -1258,9 +1258,16 @@ body { } #issue .issue-child .panel-heading .user, #issue .issue-closed a.user, -#issue .issue-opened a.user { +#issue .issue-opened a.user, +#issue .issue-reference a.user { font-weight: bold; } + +#issue .issue-child .issue-content .user .avatar { + height: 21px; + width: 21px; +} + #issue .issue-line { border-color: #CCC; } @@ -1280,18 +1287,26 @@ body { width: 60%; } #issue .issue-closed .issue-content, -#issue .issue-opened .issue-content { +#issue .issue-opened .issue-content, +#issue .issue-reference .issue-content { line-height: 42px; } #issue .issue-closed, -#issue .issue-opened { +#issue .issue-opened, +#issue .issue-reference { border-bottom: 2px solid #CCC; margin-bottom: 24px; padding-bottom: 24px; } + +#issue .issue-reference { + padding-bottom: 6px; +} + #issue .issue-closed .label-danger, -#issue .issue-opened .label-success { - margin: 0 .8em; +#issue .issue-opened .label-success, +#issue .issue-reference .label-primary { + margin: 0.8em; } #issue .milestone-item .actions { margin-top: 10px; |