Merge "Move '@media print' rules to separate file"

This commit is contained in:
jenkins-bot 2015-06-06 13:12:30 +00:00 committed by Gerrit Code Review
commit c52d548beb
3 changed files with 9 additions and 7 deletions

View file

@ -24,7 +24,12 @@
"ResourceModules": {
"ext.cite": {
"scripts": "ext.cite.js",
"styles": "ext.cite.css",
"styles": {
"ext.cite.css": {},
"ext.cite.print.css": {
"media": "print"
}
},
"messages": [
"cite_references_link_accessibility_label",
"cite_references_link_many_accessibility_label"

View file

@ -29,9 +29,3 @@ sup.reference:target {
background-color: #def; /* fallback */
background-color: rgba(0, 127, 255, 0.133);
}
@media print {
.mw-cite-backlink {
display: none;
}
}

View file

@ -0,0 +1,3 @@
.mw-cite-backlink {
display: none;
}