Browse Source

UI: More subtle strips on commits list

With grey SHA1 labels, we should consider having also more subtle strips on
commits list. As current strips blend too much with grey SHA1 labels and top
bar, making hard to distinguish headers from content.
for-closed-social
Adam Strzelecki 9 years ago
parent
commit
cab2911f23
2 changed files with 6 additions and 0 deletions
  1. +3
    -0
      public/css/gogs.css
  2. +3
    -0
      public/less/_repository.less

+ 3
- 0
public/css/gogs.css View File

@ -2243,6 +2243,9 @@ footer .container .links > *:first-child {
font-size: 13px; font-size: 13px;
padding: 6px 40px 4px 35px; padding: 6px 40px 4px 35px;
} }
.repository #commits-table.ui.basic.striped.table tbody tr:nth-child(2n) {
background-color: rgba(0, 0, 0, 0.02) !important;
}
.repository .diff-detail-box { .repository .diff-detail-box {
margin: 15px 0; margin: 15px 0;
line-height: 30px; line-height: 30px;

+ 3
- 0
public/less/_repository.less View File

@ -602,6 +602,9 @@
padding: 6px 40px 4px 35px; padding: 6px 40px 4px 35px;
} }
} }
&.ui.basic.striped.table tbody tr:nth-child(2n) {
background-color: rgba(0, 0, 0, .02)!important;
}
} }
.diff-detail-box { .diff-detail-box {

Loading…
Cancel
Save