From 91aad771ac411b317139bab1b862e9d9cfd4e59d Mon Sep 17 00:00:00 2001 From: Paul Martin <paul@paulsputer.com> Date: Thu, 07 Apr 2016 19:01:14 -0400 Subject: [PATCH] Fixes #1028 - FilestorePage now pages and filters --- src/main/resources/gitblit.css | 62 ++++++++++++++++++++++++++++-- 1 files changed, 57 insertions(+), 5 deletions(-) diff --git a/src/main/resources/gitblit.css b/src/main/resources/gitblit.css index c032905..3318441 100644 --- a/src/main/resources/gitblit.css +++ b/src/main/resources/gitblit.css @@ -1729,6 +1729,12 @@ } } +td.sha256 { + max-width: 20em; + overflow: hidden; + text-overflow: ellipsis; +} + table.comments td { padding: 4px; line-height: 17px; @@ -1922,7 +1928,7 @@ white-space: nowrap; } -span.sha1, span.sha1 a, span.sha1 a span, .commit_message, span.shortsha1, td.sha1 { +span.sha1, span.sha1 a, span.sha1 a span, .commit_message, span.shortsha1, td.sha1, td.sha256 { font-family: consolas, monospace; font-size: 13px; } @@ -1935,6 +1941,12 @@ text-align: right; font-family: monospace; width: 8em; + padding-right:15px; +} + +td.filestore { + text-align: right; + width:1em; padding-right:15px; } @@ -2059,10 +2071,6 @@ li.L5, li.L7, li.L9 { background: #fafafa !important; } - -div.docs { - max-width: 880px; -} div.docs ul.nav { margin-bottom: 0px !important; @@ -2340,3 +2348,47 @@ .priority-low { color:#0072B2; } + +.file-positive { + color:#009E73; +} + +.file-negative { + color:#D51900; +} + +.filestore-item { + color:#815b3a; +} + +.filestore-status { + display: inline; + font-size: 1.2em; +} + +table.filestore-status { + border:none!important; + border-spacing: 10px 0px; + border-collapse: separate; +} + +.filestore-status tr td a { + border:none!important; + margin-right:1.5em!important; + padding:0.25em; +} + +.filestore-status td a:hover, .filestore-status td a.filter-on { + background-color: #eee; + border-radius:5px; +} + +.filestore-status span:nth-child(2) { + font-weight:800; + margin-left:0.25em; +} + +.delete-patchset { + color:#D51900; + font-size: 1.2em; +} \ No newline at end of file -- Gitblit v1.9.1