Changeset - adf1dd34f3a0
[Not reviewed]
default
0 2 0
domruf - 8 years ago 2017-10-28 21:15:19
dominikruf@gmail.com
less: don't break author, date and comment cells into multiple lines in changeset table
2 files changed with 15 insertions and 0 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -113,6 +113,12 @@ nav.navbar #logo > .navbar-brand > img {
 
  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;
 
}
kallithea/public/less/style.less
Show inline comments
 
@@ -126,6 +126,15 @@ nav.navbar #logo > .navbar-brand > img {
 
  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;
 
}
0 comments (0 inline, 0 general)