CSS: Remove text-left mixin

refs #5543
This commit is contained in:
Eric Lippmann 2015-11-03 13:02:33 +01:00
parent 9439b4a10f
commit 50a8d2ca75
3 changed files with 7 additions and 23 deletions

View File

@ -6,16 +6,10 @@ use Icinga\Data\Reducible;
if (! $this->compact): ?> if (! $this->compact): ?>
<div class="controls"> <div class="controls">
<?= $this->tabs; ?> <?= $this->tabs; ?>
<div class="grid dont-print"> <div class="grid">
<div class="col-1-3 text-left">
<?= $this->limiter ?> <?= $this->limiter ?>
</div>
<div class="col-1-3">
<?= $this->paginator ?> <?= $this->paginator ?>
</div>
<div class="col-1-3 text-right">
<?= $this->sortBox ?> <?= $this->sortBox ?>
</div>
</div> </div>
<div> <div>
<?= $this->backendSelection; ?> <?= $this->backendSelection; ?>

View File

@ -3,18 +3,12 @@ use Icinga\Data\Extensible;
use Icinga\Data\Reducible; use Icinga\Data\Reducible;
if (! $this->compact): ?> if (! $this->compact): ?>
<div class="controls"> <div class="controls separated">
<?= $this->tabs ?> <?= $this->tabs ?>
<div class="grid dont-print"> <div class="grid">
<div class="col-1-3 text-left"> <?= $this->limiter ?>
<?= $this->limiter ?> <?= $this->paginator ?>
</div> <?= $this->sortBox ?>
<div class="col-1-3">
<?= $this->paginator ?>
</div>
<div class="col-1-3 text-right">
<?= $this->sortBox ?>
</div>
</div> </div>
<div> <div>
<?= $this->backendSelection ?> <?= $this->backendSelection ?>

View File

@ -33,10 +33,6 @@
text-align: center; text-align: center;
} }
.text-left {
text-align: left;
}
.text-right { .text-right {
text-align: right; text-align: right;
} }
@ -176,11 +172,11 @@ table.listing-table {
border-spacing: @vertical-padding 0; border-spacing: @vertical-padding 0;
th { th {
.text-left();
color: @text-color-light; color: @text-color-light;
font-size: @font-size-small; font-size: @font-size-small;
// Reset default font-weight // Reset default font-weight
font-weight: normal; font-weight: normal;
text-align: left;
width: 10em; width: 10em;
} }
} }