styles: Remove `linear-gradient` hack for non-supported browsers

`linear-gradient` hack was necessary for browsers, that weren't
supporting SVGs.

Bug: T306486
Bug: T308344
Change-Id: Ie61ba7955ece62015436d2aee44a66bacf42e552
This commit is contained in:
Volker E 2022-07-20 12:39:24 -07:00
parent fce9cfc652
commit 46514f2d2e
1 changed files with 6 additions and 6 deletions

View File

@ -33,30 +33,30 @@
}
#ca-unwatch.icon a:before {
background-image: linear-gradient( transparent, transparent ), url( images/unwatch-icon.svg );
background-image: url( images/unwatch-icon.svg );
}
#ca-unwatch.mw-watchlink-temp.icon a:before {
background-image: linear-gradient( transparent, transparent ), url( images/unwatch-temp-icon.svg );
background-image: url( images/unwatch-temp-icon.svg );
}
#ca-watch.icon a:before {
background-image: linear-gradient( transparent, transparent ), url( images/watch-icon.svg );
background-image: url( images/watch-icon.svg );
}
#ca-unwatch.icon a:hover:before,
#ca-unwatch.icon a:focus:before {
background-image: linear-gradient( transparent, transparent ), url( images/unwatch-icon-hl.svg );
background-image: url( images/unwatch-icon-hl.svg );
}
#ca-unwatch.mw-watchlink-temp.icon a:hover:before,
#ca-unwatch.mw-watchlink-temp.icon a:focus:before {
background-image: linear-gradient( transparent, transparent ), url( images/unwatch-temp-icon-hl.svg );
background-image: url( images/unwatch-temp-icon-hl.svg );
}
#ca-watch.icon a:hover:before,
#ca-watch.icon a:focus:before {
background-image: linear-gradient( transparent, transparent ), url( images/watch-icon-hl.svg );
background-image: url( images/watch-icon-hl.svg );
}
// Loading watchstar link class.