Fix dashboard latest pages overlap when page width is low

This commit is contained in:
Flavio Copes
2015-09-02 15:31:48 +02:00
parent da3097c8c6
commit 87858df184
4 changed files with 16 additions and 7 deletions

View File

@@ -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

View File

@@ -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;
}
}

View File

@@ -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>