Commit 646bad43e97482333648522917aefc83b69e2e9a

Authored by Riyad Preukschas
1 parent 3d019724

Fix styles

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  
... ...
app/assets/stylesheets/sections/tree.scss
... ... @@ -72,6 +72,15 @@
72 72 }
73 73 }
74 74 }
  75 +
  76 + .blame {
  77 + img.avatar {
  78 + border: 0 none;
  79 + float: none;
  80 + margin: 0;
  81 + padding: 0;
  82 + }
  83 + }
75 84 }
76 85  
77 86 .tree-btn-group {
... ...