1// Variables 2@plugin-id: #plugin__statistics; 3@table-width: 500px; 4@margin-standard: 1em; 5@margin-small: 0.5em; 6@input-width: 6em; 7@font-size-large: 120%; 8@padding-bottom: 2em; 9 10@plugin-id { 11 // Time selector styles 12 div.plg_stats_timeselect { 13 margin-bottom: @margin-standard; 14 15 ul, 16 ul li, 17 form { 18 list-style-type: none; 19 display: inline; 20 margin: 0; 21 padding: 0; 22 text-align: left; 23 } 24 25 ul li, 26 input { 27 margin: 0 @margin-small 0 0; 28 } 29 30 input.edit { 31 width: @input-width; 32 } 33 } 34 35 // Graph styles 36 img.graph { 37 background: transparent url(ico/load.gif) center center no-repeat; 38 margin: @margin-standard 0; 39 } 40 41 // Dashboard styles 42 .plg_stats_dashboard div { 43 padding-bottom: @padding-bottom; 44 } 45 46 // Top section styles 47 .plg_stats_top { 48 font-size: @font-size-large; 49 50 div { 51 padding: 0; 52 } 53 } 54 55 // Layout utilities 56 .left { 57 float: left; 58 } 59 60 // Table styles 61 table { 62 width: @table-width; 63 } 64 65 // Pager styles 66 .plg_stats_pager { 67 width: @table-width; 68 69 a.next { 70 float: right; 71 } 72 73 a.prev { 74 float: left; 75 } 76 } 77} 78