Fix overflowing tables in statistics plugin's backend

CSS-only solution which

a. reduces the font-size
b. makes the tables horizontally scrollable if they still overflow
   their parent container (see http://goo.gl/EquJxL)

References #373
This commit is contained in:
Matthias Mees 2015-11-02 11:12:06 +01:00
parent fa1ca78ea7
commit 077425689d

View File

@ -1201,11 +1201,24 @@ summary {
#workspace,
.plugin_data,
.plugin_data summary,
.serendipity_statistics > .wide_box {
.plugin_data summary {
overflow: hidden;
}
.serendipity_statistics > .wide_box {
min-height: .01%;
overflow-x: auto;
}
.serendipity_statistics > .wide_box table {
max-width: 100%;
}
.serendipity_statistics > .wide_box tr {
font-size: .8125em;
text-align: center;
}
.serendipity_customfields label {
margin-right: 1em;
}