dist
src
containers
editable-container.css
editable-container.js
editable-inline.js
editable-popover.js
editable-poshytip.js
editable-tooltip.js
editable-form
element
img
inputs
inputs-ext
test
.gitignore
CHANGELOG.txt
LICENSE-MIT
Package.nuspec
README.md
bower.json
composer.json
grunt.js
package.json
21 lines
641 B
CSS
21 lines
641 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 */
|
|
z-index: 9990; /* should be less than select2 dropdown z-index to close dropdown first when click */
|
|
} |