diff options
author | Lauris BH <lauris@nix.lv> | 2017-05-05 10:15:36 +0300 |
---|---|---|
committer | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-05-05 15:15:36 +0800 |
commit | 2e17dda8bb583d2a088589ca4d37ce2d4131b0e7 (patch) | |
tree | 4860003c9b725a9911671c8e9051fa16da159cea /public/css/index.css | |
parent | 935caa7f95f0ce5cc7e01c24bd41b8ffce658581 (diff) | |
download | gitea-2e17dda8bb583d2a088589ca4d37ce2d4131b0e7.tar.gz gitea-2e17dda8bb583d2a088589ca4d37ce2d4131b0e7.zip |
Remove sha1 hash display in repository table and add latest commit GPG check (#1678)
Diffstat (limited to 'public/css/index.css')
-rw-r--r-- | public/css/index.css | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/public/css/index.css b/public/css/index.css index 9ed282ade2..6c5be7f0b5 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -1306,6 +1306,9 @@ footer .ui.language .menu { padding-top: 8px; padding-bottom: 8px; } +.repository.file.list #repo-files-table td.message .isSigned { + cursor: default; +} .repository.file.list #repo-files-table tr:hover { background-color: #ffffEE; } @@ -1933,10 +1936,15 @@ footer .ui.language .menu { .repository #commits-table td.sha .sha.label { margin: 0; } -.repository #commits-table td.sha .sha.label.isSigned { +.repository #commits-table.ui.basic.striped.table tbody tr:nth-child(2n) { + background-color: rgba(0, 0, 0, 0.02) !important; +} +.repository #commits-table td.sha .sha.label.isSigned, +.repository #repo-files-table .sha.label.isSigned { border: 1px solid #BBB; } -.repository #commits-table td.sha .sha.label.isSigned .detail.icon { +.repository #commits-table td.sha .sha.label.isSigned .detail.icon, +.repository #repo-files-table .sha.label.isSigned .detail.icon { background: #FAFAFA; margin: -6px -10px -4px 0px; padding: 5px 3px 5px 6px; @@ -1944,16 +1952,15 @@ footer .ui.language .menu { border-top-left-radius: 0; border-bottom-left-radius: 0; } -.repository #commits-table td.sha .sha.label.isSigned.isVerified { +.repository #commits-table td.sha .sha.label.isSigned.isVerified, +.repository #repo-files-table .sha.label.isSigned.isVerified { border: 1px solid #21BA45; background: #21BA4518; } -.repository #commits-table td.sha .sha.label.isSigned.isVerified .detail.icon { +.repository #commits-table td.sha .sha.label.isSigned.isVerified .detail.icon, +.repository #repo-files-table .sha.label.isSigned.isVerified .detail.icon { border-left: 1px solid #21BA4580; } -.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; |