fix inline container move on next line in IE7
This commit is contained in:
@ -2,6 +2,11 @@ X-editable changelog
|
|||||||
=============================
|
=============================
|
||||||
|
|
||||||
|
|
||||||
|
Version 1.3.1 wip
|
||||||
|
----------------------------
|
||||||
|
[bug] inline container moves on next line in IE7 (vitalets)
|
||||||
|
|
||||||
|
|
||||||
Version 1.3.0 Dec 10, 2012
|
Version 1.3.0 Dec 10, 2012
|
||||||
----------------------------
|
----------------------------
|
||||||
[enh] added html5 inputs support: password, email, url, tel, number, range (vitalets)
|
[enh] added html5 inputs support: password, email, url, tel, number, range (vitalets)
|
||||||
|
@ -8,9 +8,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.editable-container.editable-inline {
|
.editable-container.editable-inline {
|
||||||
/* display: inline; */ /* display: inline does not correctly work with show()/hide() in jquery <= 1.7.2 */
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
/* inline-block emulation for IE7*/
|
||||||
|
zoom: 1;
|
||||||
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.editable-container.ui-widget {
|
.editable-container.ui-widget {
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
display: inline-block; /* should be inline to take effect of parent's white-space: nowrap */
|
display: inline-block; /* should be inline to take effect of parent's white-space: nowrap */
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
margin-left: 7px;
|
margin-left: 7px;
|
||||||
/* display-inline emulation for IE7*/
|
/* inline-block emulation for IE7*/
|
||||||
zoom: 1;
|
zoom: 1;
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user