undo
This commit is contained in:
parent
315770bf30
commit
2e0881b109
|
@ -1790,3 +1790,36 @@ table img {
|
||||||
.results {
|
.results {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
/* fix for mobile table view in search! */
|
||||||
|
@media screen and (max-width: 650px) {
|
||||||
|
table {
|
||||||
|
width:inherit;
|
||||||
|
}
|
||||||
|
thead {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
tr:nth-of-type(2n) {
|
||||||
|
background-color: inherit;
|
||||||
|
}
|
||||||
|
tr td:first-child {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
tbody td {
|
||||||
|
display: block;
|
||||||
|
box-shadow: 0px 1px 0px var(--accent);
|
||||||
|
}
|
||||||
|
tbody td:before {
|
||||||
|
content: attr(data-th);
|
||||||
|
display: block;
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
table.table th, table.table td {
|
||||||
|
padding: 5px;
|
||||||
|
margin: 5px;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
table.table td img{
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
|
@ -5,7 +5,7 @@
|
||||||
</form>
|
</form>
|
||||||
<div class="results">
|
<div class="results">
|
||||||
@if(result)
|
@if(result)
|
||||||
<h1>{{ count }} f0cks given (page {{ pagination.page }} of {{ pagination.end }}):</h1>
|
<h2>{{ count }} f0cks given (page {{ pagination.page }} of {{ pagination.end }}):</h2>
|
||||||
<table style="width: 100%" class="table">
|
<table style="width: 100%" class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user