18 lines
570 B
CSS
18 lines
570 B
CSS
.editable-container {
|
|
max-width: none !important; /* without this rule poshytip/tooltip does not stretch */
|
|
}
|
|
|
|
.editable-container.popover {
|
|
/* width: 300px;*/ /* debug */
|
|
width: auto; /* without this rule popover does not stretch */
|
|
}
|
|
|
|
.editable-container.editable-inline {
|
|
/* display: inline; */ /* display: inline does not correctly work with show()/hide() in jquery <= 1.7.2 */
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.editable-container.ui-widget {
|
|
font-size: inherit; /* jqueryui widget font 1.1em too big, overwrite it */
|
|
} |