20 lines
537 B
CSS
20 lines
537 B
CSS
.editable-container.editable-popup {
|
|
max-width: none !important; /* without this rule poshytip/tooltip does not stretch */
|
|
}
|
|
|
|
.editable-container.popover {
|
|
width: auto; /* without this rule popover does not stretch */
|
|
}
|
|
|
|
.editable-container.editable-inline {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
width: auto;
|
|
/* inline-block emulation for IE7*/
|
|
zoom: 1;
|
|
*display: inline;
|
|
}
|
|
|
|
.editable-container.ui-widget {
|
|
font-size: inherit; /* jqueryui widget font 1.1em too big, overwrite it */
|
|
} |