Fix block elements in hbox taking more than one line

This commit is contained in:
Nathan Gray 2012-04-09 19:46:33 +00:00
parent 1dface0485
commit 810d6a8487

View File

@ -28,7 +28,9 @@ div.et2_vbox>* {
div.et2_hbox div.et2_hbox { div.et2_hbox div.et2_hbox {
display: inline; display: inline;
} }
div.et2_hbox {
white-space: nowrap;
}
div.et2_hbox>* { div.et2_hbox>* {
text-align: left; text-align: left;
} }
@ -49,6 +51,9 @@ div.et2_hbox_right {
float: right; float: right;
clear: right; clear: right;
} }
div.et2_hbox>div {
display: inline-block;
}
/** /**
* Placeholder widget - used for un-implemented widgets * Placeholder widget - used for un-implemented widgets