Merge pull request #557 from simgunz/fix-button-not-highlighted

Fix editor buttons not highlighted
This commit is contained in:
Damien Elmes 2020-04-15 18:50:36 +10:00 committed by GitHub
commit 75db74e2e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -30,6 +30,7 @@ Evandro Coan <github.com/evandrocoan>
Alan Du <alanhdu@gmail.com> Alan Du <alanhdu@gmail.com>
Yuchen Lei <lyc@xuming.studio> Yuchen Lei <lyc@xuming.studio>
Henry Tang <hktang@ualberta.ca> Henry Tang <hktang@ualberta.ca>
Simone Gaiarin <simgunz@gmail.com>
******************** ********************

View file

@ -60,12 +60,12 @@ button.linkb {
background: transparent; background: transparent;
} }
.linkb:disabled { button.linkb:disabled {
opacity: 0.3; opacity: 0.3;
cursor: not-allowed; cursor: not-allowed;
} }
.highlighted { button.highlighted {
border-bottom: 3px solid #000; border-bottom: 3px solid #000;
} }