升级x-editable到最新版本1.5.3
parent
03201c36e8
commit
6f8a388e8e
|
@ -1,7 +1,7 @@
|
||||||
/*! X-editable - v1.5.1
|
/*! X-editable - v1.5.3
|
||||||
* In-place editing with Twitter Bootstrap, jQuery UI or pure jQuery
|
* In-place editing with Twitter Bootstrap, jQuery UI or pure jQuery
|
||||||
* http://github.com/vitalets/x-editable
|
* http://github.com/vitalets/x-editable
|
||||||
* Copyright (c) 2013 Vitaliy Potapov; Licensed MIT */
|
* Copyright (c) 2019 Vitaliy Potapov; Licensed MIT */
|
||||||
.editableform {
|
.editableform {
|
||||||
margin-bottom: 0; /* overwrites bootstrap margin */
|
margin-bottom: 0; /* overwrites bootstrap margin */
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,16 @@
|
||||||
line-height: 20px; /* overwriting bootstrap line-height. See #133 */
|
line-height: 20px; /* overwriting bootstrap line-height. See #133 */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
BS3 fix: stop css from breaking when the form is inside a popup and inside a form with the class .form-horizontal
|
||||||
|
See: https://github.com/vitalets/x-editable/issues/682
|
||||||
|
*/
|
||||||
|
.form-horizontal .editable-popup .editableform .form-group {
|
||||||
|
margin-left:0;
|
||||||
|
margin-right:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
BS3 width:1005 for inputs breaks editable form in popup
|
BS3 width:1005 for inputs breaks editable form in popup
|
||||||
See: https://github.com/vitalets/x-editable/issues/393
|
See: https://github.com/vitalets/x-editable/issues/393
|
||||||
|
@ -145,6 +155,7 @@
|
||||||
.editable-pre-wrapped {
|
.editable-pre-wrapped {
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.editable-container.editable-popup {
|
.editable-container.editable-popup {
|
||||||
max-width: none !important; /* without this rule poshytip/tooltip does not stretch */
|
max-width: none !important; /* without this rule poshytip/tooltip does not stretch */
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue