edit button fix, follow up to 6f13d2b (#11821)

This commit is contained in:
Kris 2021-01-22 20:31:01 -05:00 committed by GitHub
parent 17e683d373
commit 37f7f30640
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -663,10 +663,23 @@ blockquote {
.d-button-label {
order: 0;
padding-right: 0.25em;
color: var(--primary-med-or-secondary-med);
transition: color 0.25s;
}
.d-icon {
order: 1;
transition: color 0.25s;
}
.discourse-no-touch & {
&:hover {
.d-button-label {
color: var(--primary-high);
}
.d-icon {
color: var(--primary-high);
}
}
}
}
}