Merge "resourceloader: Don't call wfExpandUrl() on load.php urls"
[lhc/web/wiklou.git] / resources / src / mediawiki / mediawiki.feedlink.css
1 /* Styles for links to RSS/Atom feeds in sidebar */
2
3 a.feedlink {
4 /* SVG support using a transparent gradient to guarantee cross-browser
5 * compatibility (browsers able to understand gradient syntax support also SVG).
6 * http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique */
7 background-image: url(images/feed-icon.png);
8 /* @embed */
9 background-image: -webkit-linear-gradient(transparent, transparent), url(images/feed-icon.svg);
10 /* @embed */
11 background-image: linear-gradient(transparent, transparent), url(images/feed-icon.svg);
12 }