Merge "Migrate move protect log to new log system"
[lhc/web/wiklou.git] / resources / src / mediawiki / mediawiki.feedlink.css
1 /* Styles for links to RSS/Atom feeds in sidebar */
2
3 /* Until the copy of this code in mediawiki.legacy.shared is removed, which no longer @embeds the
4 * background image, the selector below must be kept more specific. */
5 #feedlinks a.feedlink {
6 /* SVG support using a transparent gradient to guarantee cross-browser
7 * compatibility (browsers able to understand gradient syntax support also SVG).
8 * http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique */
9 background-image: url(images/feed-icon.png);
10 /* @embed */
11 background-image: -webkit-linear-gradient(transparent, transparent), url(images/feed-icon.svg);
12 /* @embed */
13 background-image: linear-gradient(transparent, transparent), url(images/feed-icon.svg);
14 }