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.
 
 
 
 
 

55 lines
1.3 KiB

  1. /**
  2. * Page Attribute Icons in the breadcrumb bar
  3. */
  4. .page-attributes {
  5. list-style: none;
  6. float: right;
  7. margin: -.45em 0 0; // FIXME sourrounding CSS should be fixed so negative margin is not needed
  8. padding: 0;
  9. display: flex;
  10. gap: 0.5rem;
  11. > li {
  12. margin: 0;
  13. padding: 0;
  14. border: 1px solid @wikiicons-border;
  15. border-radius: @ini_default_border_radius;
  16. position: relative;
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. transition: @transition background-color, @transition border-color, @transition color;
  21. // override any plugin element styles
  22. * {
  23. margin: 0;
  24. padding: 0;
  25. line-height: normal;
  26. display: block;
  27. }
  28. // number badge
  29. .btn-usertools-num();
  30. // icon
  31. svg {
  32. height: 1.5em;
  33. width: 1.5em;
  34. path {
  35. fill: @ini_nav_menu_color;
  36. }
  37. }
  38. // adjust colors on hover
  39. &:hover {
  40. background-color: @ini_nav_menu_hover_color;
  41. border-color: @ini_nav_menu_hover_color;
  42. svg path {
  43. fill: @ini_nav_menu_hover_bg;
  44. }
  45. }
  46. }
  47. }