1/** 2 * This file provides styles for starred plugin 3 */ 4 5.page-attributes { 6 li.plugin_starred { 7 .starred svg { 8 margin-top: .1em; 9 width: 1.6em; 10 height: 1.6em; 11 font-size: 0.82rem; 12 fill: @ini_nav_menu_hover_color; 13 } 14 15 a:hover, 16 a:focus, 17 a:active { 18 .starred svg { 19 fill: @ini_nav_menu_hover_bg; 20 } 21 } 22 23 } 24} 25 26nav.nav-starred { 27 ul { 28 list-style: none; 29 30 &#sidebar-menu-starred { 31 margin-left: 0; 32 } 33 34 li { 35 margin-left: 0; 36 37 svg { 38 vertical-align: middle; 39 } 40 } 41 } 42} 43