Make links easier to override

This commit is contained in:
Sean Yesmunt 2019-03-07 13:25:28 -05:00 committed by GitHub
parent 8dce6d8242
commit 1a09b03d12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,21 +72,27 @@
}
.button--link {
word-break: break-all;
transition: color 0.2s;
color: $lbry-teal-5;
&:not(.button--disabled):not(:hover) {
color: $lbry-teal-5;
[data-mode='dark'] & {
color: $lbry-teal-3;
}
[data-mode="dark"] & {
color: $lbry-teal-3;
&:hover {
color: $lbry-teal-3;
[data-mode='dark'] & {
color: $lbry-teal-4;
}
}
&:not(.button--disabled):hover {
color: $lbry-teal-3;
&.button--disabled:hover {
color: $lbry-teal-5;
[data-mode="dark"] & {
color: $lbry-teal-4;
[data-mode='dark'] & {
color: $lbry-teal-3;
}
}
}