You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

51 lines
862 B

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