Changeset - 4c5073955784
[Not reviewed]
default
0 2 0
domruf - 8 years ago 2017-10-29 12:16:09
dominikruf@gmail.com
less: textareas should be at least 100px high and 400px wide

Smaller textareas look odd.
2 files changed with 11 insertions and 0 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -116,12 +116,17 @@ nav.navbar #logo > .navbar-brand > img {
 
/* 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;
 
}
 
/* textareas should be at least 100px high and 400px wide */
 
textarea.form-control {
 
  min-height: 100px;
 
  min-width: 400px;
 
}
 
.form-group > label {
 
  float: left;
 
}
 
.dt_repo_pending {
 
  opacity: 0.5;
 
}
kallithea/public/less/style.less
Show inline comments
 
@@ -132,12 +132,18 @@ table.changesets {
 
  .date,
 
  .comments {
 
    white-space: nowrap;
 
  }
 
}
 

	
 
/* textareas should be at least 100px high and 400px wide */
 
textarea.form-control {
 
  min-height: 100px;
 
  min-width: 400px;
 
}
 

	
 
.form-group > label {
 
  float: left;
 
}
 
.dt_repo_pending {
 
  opacity: 0.5;
 
}
0 comments (0 inline, 0 general)