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 // Pager styles 46 .plg_stats_pager { 47 width: 100%; 48 49 a.next { 50 float: right; 51 } 52 53 a.prev { 54 float: left; 55 } 56 } 57} 58