forked from splitbrain/dokuwiki-plugin-dw2pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
28 lines (27 loc) · 913 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
* dw2pdf export_pdf pagetool icon
*/
/* export icon */
#dokuwiki__pagetools ul li a.export_pdf {
background-position: right 0;
}
#dokuwiki__pagetools ul li a.export_pdf:before {
content: url(pagetools-pdfexport-sprite.png);
margin-top: 0;
}
#dokuwiki__pagetools:hover ul li a.export_pdf,
#dokuwiki__pagetools ul li a.export_pdf:focus,
#dokuwiki__pagetools ul li a.export_pdf:active {
background-image: url(pagetools-pdfexport-sprite.png);
}
#dokuwiki__pagetools ul li a.export_pdf:hover,
#dokuwiki__pagetools ul li a.export_pdf:active,
#dokuwiki__pagetools ul li a.export_pdf:focus {
background-position: right -45px;
}
/*Keep pagetool icon on left side for rtl languages*/
[dir=rtl] #dokuwiki__pagetools ul li a.export_pdf:hover,
[dir=rtl] #dokuwiki__pagetools ul li a.export_pdf:active,
[dir=rtl] #dokuwiki__pagetools ul li a.export_pdf:focus {
background-position: left -45px;
}