linting: Start enforcing a basic CSS class naming rule (with lots of opt-outs)
[lhc/web/wiklou.git] / resources / src / mediawiki.feedlink / feedlink.css
1 /* Styles for links to RSS/Atom feeds in sidebar */
2
3 /* stylelint-disable-next-line selector-class-pattern */
4 a.feedlink {
5 /* SVG support using a transparent gradient to guarantee cross-browser
6 * compatibility (browsers able to understand gradient syntax support also SVG).
7 * http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique */
8 background-image: url( images/feed-icon.png );
9 /* @embed */
10 background-image: linear-gradient( transparent, transparent ), url( images/feed-icon.svg );
11 background-position: center left;
12 background-repeat: no-repeat;
13 background-size: 12px 12px;
14 padding-left: 16px;
15 }