1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #dokuwiki__usertools {
- position: absolute;
- top: .5em;
- right: 40px; // pagetool width
- text-align: right;
- width: 100%;
- ul {
- margin: 0 auto;
- padding: 0;
- max-width: var(--ini-site-width);
- }
- li.action a {
- display: inline-flex;
- flex-direction: row-reverse;
- flex-wrap: nowrap;
- svg {
- height: 1.4em;
- width: 1.4em;
- vertical-align: middle;
- fill: var(--ini-border);
- margin-right: 0.2em;
- }
- }
- li.action a:hover,
- li.action a:active {
- svg {
- fill: var(--ini-link);
- }
- }
- }
- [dir=rtl] #dokuwiki__usertools {
- text-align: left;
- left: 40px; // pagetool width
- right: auto;
- li.action a {
- svg {
- margin-right: 0;
- margin-left: 0.2em;
- }
- }
- }
|