style: add base styles to layout fields on full or half width (#7355)

This commit is contained in:
Frédéric Péters 2015-05-26 14:57:24 +02:00
parent 83bf156f60
commit af17a07710
2 changed files with 23 additions and 1 deletions

View File

@ -210,7 +210,6 @@ hr {
}
textarea {
max-width: 455px;
}
p#breadcrumb {

View File

@ -484,3 +484,26 @@ ul#evolutions li.msg-out div.msg {
margin-left: 20%;
background: #ddf;
}
div.halfwidth {
width: 45%;
float: left;
}
div.widget.halfwidth.right {
clear: none;
margin-left: 5%;
}
div.fullwidth {
width: 95%;
}
div.halfwidth textarea,
div.fullwidth textarea,
div.halfwidth select,
div.fullwidth select,
div.halfwidth input,
div.fullwidth input {
width: 100%;
}