Minor improvements in the pagination and lists

This commit is contained in:
alekseybobkov 2014-06-26 14:43:17 +11:00
parent fc25d67230
commit ae3578e159
4 changed files with 13 additions and 7 deletions

View File

@ -7958,7 +7958,7 @@ table.table.data tbody td,
table.table.data tbody th {
padding: 11px 15px;
color: #666666;
border-color: transparent;
border-color: #eeeeee;
}
table.table.data tbody td a,
table.table.data tbody th a {
@ -7995,6 +7995,10 @@ table.table.data tbody td div.progress a,
table.table.data tbody th div.progress a {
position: relative;
}
table.table.data tbody tr:first-child th,
table.table.data tbody tr:first-child td {
border-top-width: 0;
}
table.table.data tbody tr td:first-child {
border-left: 3px solid transparent;
padding-left: 17px;

View File

@ -178,7 +178,7 @@ table.table.data {
td, th {
padding: 11px 15px;
color: @color-list-text;
border-color: transparent;
border-color: @color-list-grid;
a {
color: @color-list-text;
@ -210,6 +210,12 @@ table.table.data {
}
}
}
tr:first-child {
th, td {
border-top-width: 0;
}
}
tr td:first-child {
border-left: 3px solid transparent;
padding-left: 17px;
@ -242,7 +248,6 @@ table.table.data {
}
}
tr.processing {
td, th, td a, th a {
color: #666666;

View File

@ -96,6 +96,7 @@
@color-list-norecords-text: #666666;
@color-list-hover-bg: #4da7e8;
@color-list-active-sort: #c63e26;
@color-list-grid: #eeeeee;
@color-text-title: #405261;
@color-text-description: #8f8f8f;

View File

@ -9,8 +9,6 @@
data-request-data="page: <?= $pageCurrent-1 ?>"
data-load-indicator="Loading..."
title="Previous page"></a>
<?php else: ?>
<span class="page-back"></span>
<?php endif ?>
<?php if ($pageLast > $pageCurrent): ?>
<a
@ -20,8 +18,6 @@
data-request="<?= $this->getEventHandler('onPaginate') ?>"
data-load-indicator="Loading..."
title="Next page"></a>
<?php else: ?>
<span class="page-next"></span>
<?php endif ?>
</div>
</div>