mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:02:54 +00:00
Merge pull request #14271 from haheute/log-view-mobile
improve log view table for mobile width using display:grid
This commit is contained in:
commit
d63edf5dfa
2 changed files with 17 additions and 2 deletions
|
@ -3324,10 +3324,25 @@ li.addon {
|
||||||
#adminpage .addon .desc {
|
#adminpage .addon .desc {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
}
|
}
|
||||||
|
#adminpage h2 {
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
#adminpage .table-logs-grid thead tr {
|
||||||
|
display: grid;
|
||||||
|
grid-auto-flow: row;
|
||||||
|
}
|
||||||
|
@media (min-width: 600px) {
|
||||||
|
#adminpage .table-logs-grid thead tr {
|
||||||
|
grid-auto-flow: column;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#adminpage .table-logs-grid tbody {
|
||||||
|
display: grid;
|
||||||
|
}
|
||||||
#adminpage td.log-message,
|
#adminpage td.log-message,
|
||||||
#logdetail td.log-message {
|
#logdetail td.log-message {
|
||||||
width: 80%;
|
width: 80%;
|
||||||
word-break: break-all;
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
#admin-users #users tr.blocked {
|
#admin-users #users tr.blocked {
|
||||||
background-color: #f8efc0;
|
background-color: #f8efc0;
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<table class="table table-hover">
|
<table class="table table-hover table-logs-grid">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>{{$l10n.Date}}</th>
|
<th>{{$l10n.Date}}</th>
|
||||||
|
|
Loading…
Reference in a new issue