1#plugin__statistics { 2 3 div.plg_stats_timeselect { 4 display: flex; 5 gap: 0.5em; 6 flex-wrap: wrap; 7 margin-bottom: 1em; 8 9 ul, 10 ul li, 11 form { 12 list-style-type: none; 13 display: inline; 14 margin: 0; 15 padding: 0; 16 text-align: left; 17 } 18 19 ul, form { 20 display: flex; 21 gap: 0.5em; 22 } 23 24 input.edit { 25 width: 8em; 26 } 27 } 28 29 div.plg_stats_top { 30 display: flex; 31 flex-wrap: wrap; 32 gap: 2em; 33 34 ul, li { 35 list-style-type: none; 36 margin: 0; 37 padding: 0; 38 } 39 } 40 41 table { 42 min-width: 50%; 43 } 44 45 chart-component { 46 display: block; 47 margin: 1em 0; 48 } 49 50 // Pager styles 51 .plg_stats_pager { 52 width: 100%; 53 54 a.next { 55 float: right; 56 } 57 58 a.prev { 59 float: left; 60 } 61 } 62} 63