Commit 646bad43e97482333648522917aefc83b69e2e9a
1 parent
3d019724
Exists in
master
and in
4 other branches
Fix styles
Showing
2 changed files
with
17 additions
and
2 deletions
Show diff stats
app/assets/stylesheets/sections/commits.scss
... | ... | @@ -47,12 +47,15 @@ |
47 | 47 | padding-left: 32px; |
48 | 48 | } |
49 | 49 | |
50 | - .author, | |
51 | - .committer { | |
50 | + .author a, | |
51 | + .committer a { | |
52 | 52 | font-size:14px; |
53 | 53 | line-height:22px; |
54 | 54 | text-shadow:0 1px 1px #fff; |
55 | 55 | color:#777; |
56 | + &:hover { | |
57 | + color: #999; | |
58 | + } | |
56 | 59 | } |
57 | 60 | |
58 | 61 | .avatar { |
... | ... | @@ -227,6 +230,9 @@ |
227 | 230 | |
228 | 231 | .commit-author-name { |
229 | 232 | color: #777; |
233 | + &:hover { | |
234 | + color: #999; | |
235 | + } | |
230 | 236 | } |
231 | 237 | } |
232 | 238 | ... | ... |