| 1 |
/* Responsive table */ |
| 2 |
@media screen and (max-width: 782px) { |
| 3 |
#plugin-check__submit { |
| 4 |
margin-top: 1em; |
| 5 |
} |
| 6 |
|
| 7 |
table#plugin-check__categories td { |
| 8 |
padding-bottom: .5em; |
| 9 |
} |
| 10 |
|
| 11 |
table.plugin-check__results-table { |
| 12 |
border: 0; |
| 13 |
} |
| 14 |
|
| 15 |
table.plugin-check__results-table caption { |
| 16 |
font-size: 1.3em; |
| 17 |
} |
| 18 |
|
| 19 |
table.plugin-check__results-table thead { |
| 20 |
border: none; |
| 21 |
clip: rect(0 0 0 0); |
| 22 |
height: 1px; |
| 23 |
margin: -1px; |
| 24 |
overflow: hidden; |
| 25 |
padding: 0; |
| 26 |
position: absolute; |
| 27 |
width: 1px; |
| 28 |
} |
| 29 |
|
| 30 |
table.plugin-check__results-table tr { |
| 31 |
border-bottom: 3px solid #ddd; |
| 32 |
display: block; |
| 33 |
} |
| 34 |
|
| 35 |
table.plugin-check__results-table td, |
| 36 |
table.plugin-check__results-table code { |
| 37 |
font-size: .9em; |
| 38 |
} |
| 39 |
|
| 40 |
table.plugin-check__results-table td { |
| 41 |
border-bottom: 1px solid #ddd; |
| 42 |
display: block; |
| 43 |
text-align: right; |
| 44 |
} |
| 45 |
|
| 46 |
table.plugin-check__results-table td::before { |
| 47 |
content: attr(data-label); |
| 48 |
float: left; |
| 49 |
font-weight: bold; |
| 50 |
} |
| 51 |
|
| 52 |
.rtl table.plugin-check__results-table td { |
| 53 |
text-align: left; |
| 54 |
} |
| 55 |
|
| 56 |
.rtl table.plugin-check__results-table td::before { |
| 57 |
float: right; |
| 58 |
} |
| 59 |
|
| 60 |
table.plugin-check__results-table td:last-child { |
| 61 |
border-bottom: 0; |
| 62 |
} |
| 63 |
} |