Fixed #54: CSS more robust against global settings of div position
This commit is contained in:
parent
94ca26e457
commit
1c8ea64c2a
|
@ -7,6 +7,8 @@ https://github.com/josdejong/jsoneditor
|
|||
|
||||
- Fixed embedded version of jsoneditor ace theme not being loaded in
|
||||
minimalist version (see #55).
|
||||
- Fixed a styling issue in the SearchBox of Ace editor (mode `code`).
|
||||
- Fixed #54: CSS more robust against global settings of div position.
|
||||
- Added docs and example on how to use a custom version of Ace editor.
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
/* reset styling (prevent conflicts with bootstrap, materialize.css, etc.) */
|
||||
|
||||
div.jsoneditor div {
|
||||
position: static;
|
||||
}
|
||||
|
||||
div.jsoneditor .jsoneditor-search input {
|
||||
height: auto;
|
||||
border: inherit;
|
||||
|
|
Loading…
Reference in New Issue