Commit 72a13fcc2e847e551fd2a2be4b45000962374c7b
1 parent
c2789dae
Exists in
master
and in
4 other branches
changed color for commit tag
Showing
1 changed file
with
6 additions
and
2 deletions
Show diff stats
app/assets/stylesheets/projects.css.scss
... | ... | @@ -366,8 +366,12 @@ body.project-page table .commit { |
366 | 366 | color:white; |
367 | 367 | } |
368 | 368 | &.commit { |
369 | - background: #44aacc; | |
370 | - color:white; | |
369 | + background-image: -webkit-gradient(linear, 0 0, 0 26, color-stop(0.076, #fefefe), to(#F6F7F8)); | |
370 | + background-image: -webkit-linear-gradient(#fefefe 7.6%, #F6F7F8); | |
371 | + background-image: -moz-linear-gradient(#fefefe 7.6%, #F6F7F8); | |
372 | + background-image: -o-linear-gradient(#fefefe 7.6%, #F6F7F8); | |
373 | + color: #777; | |
374 | + border: 1px solid #DEDFE1; | |
371 | 375 | } |
372 | 376 | } |
373 | 377 | ... | ... |