From 76e18a87471ec487304eb13dc8a5d362585b4f1c Mon Sep 17 00:00:00 2001
From: Paul Martin <paul@paulsputer.com>
Date: Mon, 11 Apr 2016 14:59:46 -0400
Subject: [PATCH] Merge pull request #1046 from gitblit/1028-FilterAndPagingForFilestorePage

---
 src/main/resources/gitblit.css |   87 ++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 80 insertions(+), 7 deletions(-)

diff --git a/src/main/resources/gitblit.css b/src/main/resources/gitblit.css
index e0570ce..3318441 100644
--- a/src/main/resources/gitblit.css
+++ b/src/main/resources/gitblit.css
@@ -1490,10 +1490,12 @@
 	user-select: none;
 	border: 1px solid #F00;
 }
+
 .imgdiff-opa-container {
+	display: inline-block;
 	width: 200px;
 	height: 4px;
-	margin: 12px 35px;
+	margin: 12px 35px 6px 35px;
 	padding: 0;
 	position: relative;
 	border: 1px solid #888;
@@ -1532,6 +1534,7 @@
 }
 
 .imgdiff-opa-handle {
+	display: inline-block;
 	width: 10px;
 	height: 10px;
 	position: absolute;
@@ -1549,6 +1552,7 @@
 }
 
 .imgdiff-ovr-handle {
+	display: inline-block;
 	width : 1px;
 	height: 100%;
 	top: 0px;
@@ -1576,6 +1580,19 @@
 	height: 10px;
 	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAABMklEQVQY022OsU7CUBRA723fpTS0NcVBJuOoQUed0MSJhOiP0IHK6g84ShoM/2HE1TjZxeCA0UF3RW2tLQ73mesgLuiZT3IOwoww7FSLYrrDzHUAMInUbblsX0RR9NJsNgEBAIIg2EjT9DDP8y2ttSsiqEhlTsW58TzvaDAYxBiGB9XJ5PkkSZJdZvZFRAEAIKImUm+et3BVqy11VFHkjTzPN2cS/a6ICDHrxWlR1N+zjz2DmddnOQVziIjJWnuaedUAAENEEP4iPweIImIYRDQmogwR9T+SVkplpVLpzrBt+9KpVEaK6BUReU6a2LY9dl33zIzj+LOx3XgUkRUQsADwSylzalnWk+M4I9/3o36/f42t/RYMT4fQ7XaX0zRpMes1ADAU0b3nuee9495DO2ib37s7ktpA7ddzAAAAAElFTkSuQmCC);
 	/* With CSS: background-image: radial-gradient(5px at 50% 50%, #444, #888, transparent 5px); */
+}
+
+.imgdiff-link {
+	margin: 0px 4px;
+	text-decoration: none;
+	border: none;
+}
+
+.imgdiff-link > img {
+	border: 1px solid transparent; /* Avoid jumping when we change the border */
+	width: 20px;
+	height: 20px;
+	margin-bottom: 10px;
 }
 
 /* End image diffs */
@@ -1712,12 +1729,22 @@
   }	
 }
 
+td.sha256 {
+	max-width: 20em;
+    overflow: hidden;
+    text-overflow: ellipsis;
+}
+
 table.comments td {
 	padding: 4px;
 	line-height: 17px;
 }
 
-table.repositories {	
+table.projectlist {
+	margin-top: 10px;
+}
+
+table.repositories {
 	border:1px solid #ddd;
 	border-spacing: 0px;
 	width: 100%;
@@ -1901,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;
 }
@@ -1914,6 +1941,12 @@
 	text-align: right;
 	font-family: monospace;
 	width: 8em;
+	padding-right:15px;
+}
+
+td.filestore {
+	text-align: right;
+	width:1em;
 	padding-right:15px;
 }
 
@@ -2038,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;
@@ -2319,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