1
0
forked from mirrors/earl-grey

fixed :focus and :active, mostly?

This commit is contained in:
straw 2021-08-12 22:50:11 +02:00 committed by GitHub
parent 85ed9fd33d
commit 74675bb291
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -456,7 +456,17 @@ a.ui.ui.ui.green.label:hover {
color: #dbdbdb;
}
.ui.green.button:active, .ui.green.buttons .button:active {
background-color: #3683C0;
background-color: #40AAFF;
color: #FFFFFF;
text-shadow: none;
}
.ui.green.button:active, .ui.green.buttons .button:active {
background-color: #40AAFF;
color: #FFFFFF;
text-shadow: none;
}
.ui.green.button:focus, .ui.green.buttons .button:focus {
background-color: #40AAFF;
color: #FFFFFF;
text-shadow: none;
}