reverb.css 708 B

1234567891011121314151617181920
  1. /*
  2. * Reverb admin navigation icon
  3. *
  4. * The <i class="reverb-nav-icon"> is rendered by OC3 AdminLTE sidebar.
  5. * CSS mask lets the SVG shape act as a clipping mask over background-color,
  6. * so the icon inherits currentColor and matches whatever the sidebar text
  7. * colour is (white on hover/active, 75% white when inactive).
  8. */
  9. .reverb-nav-icon {
  10. display: inline-block;
  11. width: 18px;
  12. height: 18px;
  13. vertical-align: -3px;
  14. background-color: currentColor;
  15. -webkit-mask: url('../image/reverb/r_icon.svg') no-repeat center / contain;
  16. mask: url('../image/reverb/r_icon.svg') no-repeat center / contain;
  17. /* suppress any inherited font glyph */
  18. font-size: 0;
  19. line-height: 1;
  20. }