1/* 2#dokuwiki__usertools { 3 position: absolute; 4 top: .5em; 5 right: 40px; // pagetool width 6 text-align: right; 7 width: 100%; 8 9 ul { 10 margin: 0 auto; 11 padding: 0; 12 max-width: @ini_site_width; 13 } 14 15 li.action a { 16 display: inline-flex; 17 flex-direction: row-reverse; 18 flex-wrap: nowrap; 19 20 svg { 21 height: 1.4em; 22 width: 1.4em; 23 vertical-align: middle; 24 fill: @ini_border; 25 margin-right: 0.2em; 26 } 27 } 28 29 li.action a:hover, 30 li.action a:active { 31 svg { 32 fill: @ini_link; 33 } 34 } 35 36} 37 38[dir=rtl] #dokuwiki__usertools { 39 text-align: left; 40 left: 40px; // pagetool width 41 right: auto; 42 43 44 li.action a { 45 46 svg { 47 margin-right: 0; 48 margin-left: 0.2em; 49 } 50 } 51} 52*/ 53