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