Commit 283a9c7b7d5818c18f100e50c66420441c090fee

Authored by Dmitriy Zaporozhets
1 parent 3e046733

Fix margin-right for some avatars

app/assets/stylesheets/gitlab_bootstrap/common.scss
... ... @@ -68,10 +68,10 @@
68 68 .alert-message.error { @extend .alert-error; }
69 69  
70 70 /** AVATARS **/
71   -img.avatar { float:left; margin-right:15px; width:40px; border:1px solid #ddd; padding:1px; }
72   -img.avatar.s16 { width:16px; height:16px; }
73   -img.avatar.s24 { width:24px; height:24px; }
74   -img.avatar.s32 { width:32px; height:32px; }
  71 +img.avatar { float:left; margin-right:12px; width:40px; border:1px solid #ddd; padding:1px; }
  72 +img.avatar.s16 { width:16px; height:16px; margin-right:6px; }
  73 +img.avatar.s24 { width:24px; height:24px; margin-right:8px; }
  74 +img.avatar.s32 { width:32px; height:32px; margin-right:10px; }
75 75 img.lil_av { padding-left: 4px; padding-right:3px; }
76 76  
77 77 /** HELPERS **/
... ...
app/assets/stylesheets/sections/issues.scss
... ... @@ -44,7 +44,7 @@
44 44  
45 45 img.avatar {
46 46 width:32px;
47   - margin-top:4px;
  47 + margin-top:1px;
48 48 }
49 49 }
50 50 }
... ...
app/assets/stylesheets/sections/merge_requests.scss
... ... @@ -71,7 +71,7 @@ li.merge_request {
71 71 padding:7px 10px;
72 72 img.avatar {
73 73 width: 32px;
74   - margin-top: 4px;
  74 + margin-top: 1px;
75 75 }
76 76 p {
77 77 padding: 0px;
... ...