fix(css): remove :hover style on disabled button. (#712)

Should not have :hover style on disabled buttons.
This commit is contained in:
Gcaufy 2019-06-08 16:23:53 +08:00 committed by Jos de Jong
parent 5ba71998bb
commit 73e05a6604
1 changed files with 2 additions and 0 deletions

View File

@ -45,6 +45,8 @@ div.jsoneditor-menu > div.jsoneditor-modes > button:active {
div.jsoneditor-menu > button:disabled, div.jsoneditor-menu > button:disabled,
div.jsoneditor-menu > div.jsoneditor-modes > button:disabled { div.jsoneditor-menu > div.jsoneditor-modes > button:disabled {
opacity: 0.5; opacity: 0.5;
background-color: transparent;
border: none;
} }
div.jsoneditor-menu > button.jsoneditor-collapse-all { div.jsoneditor-menu > button.jsoneditor-collapse-all {