diff options
author | Dmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com> | 2011-12-01 00:24:28 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com> | 2011-12-01 00:24:28 +0200 |
commit | b60b7b2e2b6880306d701e6607fe7bf89f4de137 (patch) | |
tree | 52ff6183b338002beea29aab8a36e6c2fe3e94c4 /app/assets | |
parent | fdc815961c710d4adaab16fe9a125cdba80c9bb4 (diff) | |
download | gitlab-ce-b60b7b2e2b6880306d701e6607fe7bf89f4de137.tar.gz |
restyle commit show page pt1
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/application.css | 6 | ||||
-rw-r--r-- | app/assets/stylesheets/commits.css.scss | 7 |
2 files changed, 12 insertions, 1 deletions
diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 3a5af7c65de..8fc87d0d653 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -50,3 +50,9 @@ padding:0 !important; } + +/** COMMIT BLOCK **/ +.commit-title{display: block;} +.commit-title{margin-bottom: 10px} +.commit-author{color: #999; font-weight: normal; font-style: italic;} +.commit-author strong{font-weight: bold; font-style: normal;} diff --git a/app/assets/stylesheets/commits.css.scss b/app/assets/stylesheets/commits.css.scss index c56492cdfd0..23a8add96c8 100644 --- a/app/assets/stylesheets/commits.css.scss +++ b/app/assets/stylesheets/commits.css.scss @@ -30,13 +30,18 @@ .old_line, .new_line { background:#ECECEC; color:#777; - width:30px; + width:35px; float:left; padding: 0px 5px; border-right: 1px solid #ccc; + text-align:right; } } pre.commit_message { white-space: pre-wrap; + font-family: "Helvetica", sans-serif; + color: #555; + font-weight:bold; + font-size:15px; } |