Merge pull request #6681 from SylvainCorlay/widget_hbox_align

Minor change in widgets.less to fix alignment issue
This commit is contained in:
Jonathan Frederic 2014-10-14 14:33:53 -07:00
commit c0108e1089
3 changed files with 12 additions and 3 deletions

View File

@ -1527,7 +1527,10 @@ div.cell.text_cell.rendered {
box-flex: 0;
/* Modern browsers */
flex: none;
margin: 5px;
margin-top: 0px !important;
margin-bottom: 0px !important;
margin-right: 5px;
margin-left: 5px;
}
.widget-hbox input[type="checkbox"] {
margin-top: 9px;

View File

@ -9402,7 +9402,10 @@ div.cell.text_cell.rendered {
box-flex: 0;
/* Modern browsers */
flex: none;
margin: 5px;
margin-top: 0px !important;
margin-bottom: 0px !important;
margin-right: 5px;
margin-left: 5px;
}
.widget-hbox input[type="checkbox"] {
margin-top: 9px;

View File

@ -188,7 +188,10 @@
.widget-hbox {
/* Horizontal widgets */
.hbox();
margin: 5px;
margin-top: 0px !important;
margin-bottom: 0px !important;
margin-right: 5px;
margin-left: 5px;
input[type="checkbox"] {
margin-top: 9px;