fix(css): remove :hover style on disabled button. (#712)
Should not have :hover style on disabled buttons.
This commit is contained in:
parent
5ba71998bb
commit
73e05a6604
|
@ -45,6 +45,8 @@ div.jsoneditor-menu > div.jsoneditor-modes > button:active {
|
|||
div.jsoneditor-menu > button:disabled,
|
||||
div.jsoneditor-menu > div.jsoneditor-modes > button:disabled {
|
||||
opacity: 0.5;
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
}
|
||||
|
||||
div.jsoneditor-menu > button.jsoneditor-collapse-all {
|
||||
|
|
Loading…
Reference in New Issue