1/** 2 * Page Attribute Icons in the breadcrumb bar 3 */ 4.page-attributes { 5 list-style: none; 6 float: right; 7 display: inline-block; 8 max-width: 30%; 9 margin: -.45em 0 0; 10 padding: 0; 11 @media @screen_max-xs { 12 max-width: 90%; 13 } 14 15 > li { 16 .btn-usertools-wrapper(); // uniform li 17 .btn-usertools-num(); 18 19 position: relative; 20 float: left; 21 display: block; 22 width: auto; 23 min-height: 2em; 24 border: 1px solid @color-border; 25 border-radius: @border-radius; 26 color: @color-nav; 27 text-align: center; 28 margin: 0; 29 } 30} 31