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