diff options
author | Justin Nuß <justin.nuss@hmmh.de> | 2014-07-24 10:15:05 +0200 |
---|---|---|
committer | Justin Nuß <justin.nuss@hmmh.de> | 2014-07-24 10:15:05 +0200 |
commit | d43c5895bc5026fb29dd9aa509056e49b4644ba7 (patch) | |
tree | 52e07c859411253fd87f29a3e6798e3f082b0459 /public/css | |
parent | c850c01007f9853bb22c940f47d3d7f1d00ba1cb (diff) | |
download | gitea-d43c5895bc5026fb29dd9aa509056e49b4644ba7.tar.gz gitea-d43c5895bc5026fb29dd9aa509056e49b4644ba7.zip |
Update template and style, only close commit if commit is in same repository
Diffstat (limited to 'public/css')
-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; |