1/**
2 * latexit pagetool icon
3 *
4 * This CSS has is based on CSS of dw2pdf plugin
5 * https://github.com/splitbrain/dokuwiki-plugin-dw2pdf/blob/master/
6 *
7 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
8 * @author     Luigi Micco <l.micco@tiscali.it>
9 * @author     Andreas Gohr <andi@splitbrain.org>
10 */
11
12/* export icon */
13#dokuwiki__pagetools ul li a.export_latexit {
14    background-position: right 0;
15}
16#dokuwiki__pagetools ul li a.export_latexit:before {
17    content: url(pagetools-latexitexport-sprite.png);
18    margin-top: 0;
19}
20#dokuwiki__pagetools:hover ul li a.export_latexit,
21#dokuwiki__pagetools ul li a.export_latexit:focus,
22#dokuwiki__pagetools ul li a.export_latexit:active {
23    background-image: url(pagetools-latexitexport-sprite.png);
24}
25#dokuwiki__pagetools ul li a.export_latexit:hover,
26#dokuwiki__pagetools ul li a.export_latexit:active,
27#dokuwiki__pagetools ul li a.export_latexit:focus {
28    background-position: right -45px;
29}