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
 
@@ -119,6 +119,11 @@ 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;
 
}
kallithea/public/less/style.less
Show inline comments
 
@@ -135,6 +135,12 @@ table.changesets {
 
  }
 
}
 

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

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