1/** 2 * Styles for site tools and user tools in sidebar 3 * 4 * Using BEM methodology as far as possible 5 */ 6 7.toollist { 8} 9 10.toollist__listitem { 11 list-style: none; 12 13 a { 14 display: inline-flex; 15 flex-direction: row-reverse; 16 flex-wrap: nowrap; 17 align-items: center; 18 } 19 20 span { 21 font-size: @font-size-default; 22 } 23 24 svg { 25 width: @font-size-default; 26 vertical-align: middle; 27 fill: @ini_nav_menu_color; 28 margin-right: .2em; 29 } 30} 31