changeset 7011:adf1dd34f3a0

less: don't break author, date and comment cells into multiple lines in changeset table
author domruf <dominikruf@gmail.com>
date Sat, 28 Oct 2017 21:15:19 +0200
parents 1ea5d93c97de
children fd22ce18d312
files kallithea/public/css/style.css kallithea/public/less/style.less
diffstat 2 files changed, 15 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/public/css/style.css	Sat Oct 28 19:25:26 2017 +0200
+++ b/kallithea/public/css/style.css	Sat Oct 28 21:15:19 2017 +0200
@@ -113,6 +113,12 @@
   cursor: pointer;
   color: #999;
 }
+/* don't break author, date and comment cells into multiple lines in changeset table */
+table.changesets .author,
+table.changesets .date,
+table.changesets .comments {
+  white-space: nowrap;
+}
 .form-group > label {
   float: left;
 }
--- a/kallithea/public/less/style.less	Sat Oct 28 19:25:26 2017 +0200
+++ b/kallithea/public/less/style.less	Sat Oct 28 21:15:19 2017 +0200
@@ -126,6 +126,15 @@
   color: #999;
 }
 
+/* don't break author, date and comment cells into multiple lines in changeset table */
+table.changesets {
+  .author,
+  .date,
+  .comments {
+    white-space: nowrap;
+  }
+}
+
 .form-group > label {
   float: left;
 }