CSS: Style form buttons

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-30 11:16:15 +02:00
parent a12482fcad
commit e7d78f003c
2 changed files with 20 additions and 5 deletions

View File

@ -22,6 +22,11 @@ input, select, textarea {
width: 320px;
}
input[type="checkbox"],
input[type="submit"] {
width: initial;
}
form {
// Disable icons for the moment
i {
@ -29,6 +34,21 @@ form {
}
}
// TODO(el): .form-inline control-group { display: inline-block; }
form.inline {
display: inline-block;
}
.form-controls {
margin-left: 160px;
}
button,
input[type="submit"] {
.button();
}
.control-label {
display: inline-block;
font-size: @font-size-small;

View File

@ -122,8 +122,3 @@ a.button {
height: 16px;
width: 16px;
}
// TODO(el): .form-inline control-group { display: inline-block; }
form.inline {
display: inline-block;
}