fixed wrong url path to icons sprite
one url() call to the sprite img was wrong. fixed it like the other paths.
This commit is contained in:
parent
d7833f2219
commit
9616c1d4cb
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
.jsoneditor-field, .jsoneditor-value, .jsoneditor-field-readonly, .jsoneditor-readonly {
|
.jsoneditor-field, .jsoneditor-value, .jsoneditor-field-readonly, .jsoneditor-readonly {
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
min-height: 16px;
|
min-height: 16px;
|
||||||
|
@ -345,7 +344,7 @@ button.jsoneditor-menu {
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
border: 1px solid #aec0f8;
|
border: 1px solid #aec0f8;
|
||||||
background: #e3eaf6 url('../jsoneditor/img/jsoneditor-icons.png');
|
background: #e3eaf6 url('img/jsoneditor-icons.png');
|
||||||
}
|
}
|
||||||
|
|
||||||
button.jsoneditor-menu:hover {
|
button.jsoneditor-menu:hover {
|
||||||
|
|
Loading…
Reference in New Issue