From cab2911f23e396f565b4f1d3db10277676a8d9de Mon Sep 17 00:00:00 2001 From: Adam Strzelecki Date: Thu, 3 Dec 2015 13:49:52 +0100 Subject: [PATCH] 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. --- public/css/gogs.css | 3 +++ public/less/_repository.less | 3 +++ 2 files changed, 6 insertions(+) diff --git a/public/css/gogs.css b/public/css/gogs.css index ab399f6c68..1fbcfdf15f 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2243,6 +2243,9 @@ footer .container .links > *:first-child { font-size: 13px; 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 { margin: 15px 0; line-height: 30px; diff --git a/public/less/_repository.less b/public/less/_repository.less index aef608bcac..29d4abbbbe 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -602,6 +602,9 @@ 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 {