aboutsummaryrefslogtreecommitdiffstats
path: root/style.css
diff options
context:
space:
mode:
authorHiltjo Posthuma <[email protected]>2016-01-06 18:33:24 +0100
committerHiltjo Posthuma <[email protected]>2016-01-06 18:53:51 +0100
commit6a427c75fcaab57d029222d3afb26c27b9629ae5 (patch)
treefe5583c6e4e20531262cf9695bdece7fa820bf76 /style.css
parent264aef81d5f5eeb39c194142a73cdfe84c6aeddb (diff)
downloadstagit-6a427c75fcaab57d029222d3afb26c27b9629ae5.tar.gz
stagit-6a427c75fcaab57d029222d3afb26c27b9629ae5.zip
style.css: wrap description text, nowrap for rest
vertical align to the top of the cell, this makes it scale better to some smaller screens
Diffstat (limited to 'style.css')
-rw-r--r--style.css9
1 files changed, 9 insertions, 0 deletions
diff --git a/style.css b/style.css
index dd3adac..8742827 100644
--- a/style.css
+++ b/style.css
@@ -36,6 +36,8 @@ table thead td {
table td {
padding: 0 0.4em;
+ white-space: nowrap;
+ vertical-align: top;
}
#branches tr:hover td,
@@ -46,6 +48,13 @@ table td {
background-color: #eee;
}
+#index tr td:nth-child(2),
+#tags tr td:nth-child(3),
+#branches tr td:nth-child(3),
+#log tr td:nth-child(2) {
+ white-space: normal;
+}
+
td.num {
text-align: right;
}