From 76dee438cadde7f540b0a0017676c61a7a4eceb1 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Apr 02 2015 10:56:59 +0000 Subject: [PATCH 1/3] Fix the tree_list section to not show up under the list of admins --- diff --git a/pagure/static/pagure.css b/pagure/static/pagure.css index 21821ca..17cc5db 100644 --- a/pagure/static/pagure.css +++ b/pagure/static/pagure.css @@ -323,6 +323,10 @@ pre { font-size: 1.3em; } +.tree_list { + clear: both; +} + .tree_list li.folder { list-style-image: url(images/folder.png); } From a20f5da3a7fccbc9a610aa421dfbbf1a3c494ac7 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Apr 02 2015 10:56:59 +0000 Subject: [PATCH 2/3] Restrict the width and height of the admin sections --- diff --git a/pagure/static/pagure.css b/pagure/static/pagure.css index 17cc5db..001f179 100644 --- a/pagure/static/pagure.css +++ b/pagure/static/pagure.css @@ -399,6 +399,18 @@ table.list tbody td > a width: 5em; } +.admin_list { + float: right; + width: 40%; + padding-right: 5em; + max-height: 200px; + overflow: auto; +} + +.branch_list { + width: 50%; +} + .commit_list li > a > span.commitdate { color: #4d4d4d; @@ -752,11 +764,6 @@ ul.changes { width: 500px; } -.admin_list { - float: right; - padding-right: 5em; -} - table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after { content: " \25B4\25BE" } From 3c56c58cabcbe037c69166c66daa4bd29aa489a9 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Apr 02 2015 11:03:28 +0000 Subject: [PATCH 3/3] Remove the dots marking the admins in the admin_list of the overview page --- diff --git a/pagure/static/pagure.css b/pagure/static/pagure.css index 001f179..bac9106 100644 --- a/pagure/static/pagure.css +++ b/pagure/static/pagure.css @@ -407,6 +407,10 @@ table.list tbody td > a overflow: auto; } +.admin_list li { + list-style-type: none; +} + .branch_list { width: 50%; }