diff options
author | Stephen Finucane <stephen.finucane@intel.com> | 2016-03-29 13:37:00 +0100 |
---|---|---|
committer | Stephen Finucane <stephen.finucane@intel.com> | 2016-04-01 13:19:33 +0100 |
commit | db1248609f5a19fef93a393d911450b3b1813f24 (patch) | |
tree | 8a2ac0497ec97ed2d997252e32417f33cb118447 /htdocs/css | |
parent | 282285406c3aa9dec8d03b98ff169b5ada5eb47a (diff) | |
download | patchwork-db1248609f5a19fef93a393d911450b3b1813f24.tar patchwork-db1248609f5a19fef93a393d911450b3b1813f24.tar.gz |
ui: Higher density of patches
THe Bootstrap'ification of Patchwork signficantly reduced the
information density of the patch list page, but this results in less
patches per page. Resolve this by reducing the padding on each row.
Signed-off-by: Stephen Finucane <stephen.finucane@intel.com>
Diffstat (limited to 'htdocs/css')
-rw-r--r-- | htdocs/css/style.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/htdocs/css/style.css b/htdocs/css/style.css index e5c6600..0ec11e0 100644 --- a/htdocs/css/style.css +++ b/htdocs/css/style.css @@ -410,6 +410,17 @@ table.horizontal td, table.horizontal th { table.vertical { border-collapse: collapse; } + +/* per suggestions here: https://github.com/twbs/bootstrap/issues/12238 */ +.table-extra-condensed > thead > tr > th, +.table-extra-condensed > tbody > tr > th, +.table-extra-condensed > tfoot > tr > th, +.table-extra-condensed > thead > tr > td, +.table-extra-condensed > tbody > tr > td, +.table-extra-condensed > tfoot > tr > td { + padding: 2px; +} + table.vertical th { background: #222; color: #999; |