mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-05-06 20:47:04 +02:00
Fix dashboard latest pages overlap when page width is low
This commit is contained in:
@@ -1360,6 +1360,11 @@ tr {
|
||||
#popularity .ct-chart .ct-chart-bar {
|
||||
padding: 10px; }
|
||||
|
||||
#latest .page-title, #latest .page-route {
|
||||
overflow: scroll; }
|
||||
#latest .last-modified {
|
||||
padding-left: 10px; }
|
||||
|
||||
.pages-list {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -519,8 +519,6 @@ $update-height: 3rem;
|
||||
stroke: rgba($white, 0.2) !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -531,8 +529,14 @@ $update-height: 3rem;
|
||||
}
|
||||
}
|
||||
|
||||
// Remodal Styling
|
||||
|
||||
|
||||
#latest {
|
||||
.page-title, .page-route {
|
||||
overflow: scroll;
|
||||
}
|
||||
|
||||
.last-modified {
|
||||
padding-left: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -134,7 +134,7 @@
|
||||
<h1>{{ "PLUGIN_ADMIN.LATEST_PAGE_UPDATES"|tu }}</h1>
|
||||
<table>
|
||||
{% for latest in admin.latestPages %}
|
||||
<tr><td class="double"><a href="{{ base_url }}/pages/{{ latest.route|trim('/') }}"><i class="fa fa-fw fa-file-o"></i> {{ latest.title }}</a></td><td class="double">{{ latest.route }}</td><td><b>{{ latest.modified|nicetime }}</b></td></tr>
|
||||
<tr><td class="double page-title"><a href="{{ base_url }}/pages/{{ latest.route|trim('/') }}"><i class="fa fa-fw fa-file-o"></i> {{ latest.title }}</a></td><td class="double page-route">{{ latest.route }}</td><td><b class="last-modified">{{ latest.modified|nicetime }}</b></td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user