CSS: Add rules for controls (WIP)

refs 
This commit is contained in:
Eric Lippmann 2015-10-01 22:58:40 +02:00
parent 565a9e4e03
commit 508e20dc76
1 changed files with 29 additions and 4 deletions
public/css/icinga

View File

@ -17,7 +17,7 @@
} }
.comment-text { .comment-text {
color: @text-color-light; .text-small();
font-family: @font-family-fixed; font-family: @font-family-fixed;
} }
@ -66,8 +66,10 @@
width: 16px; width: 16px;
} }
.v-center > * { .v-center {
vertical-align: middle; > * {
vertical-align: middle;
}
} }
a:hover .icon-cancel { a:hover .icon-cancel {
@ -178,6 +180,29 @@ table.listing-table {
// Reset default font-weight // Reset default font-weight
font-weight: normal; font-weight: normal;
width: 120px; width: 120px;
vertical-align: top; vertical-align: top;
}
}
// TODO(el): Fix
.controls {
.limiter-control {
.pull-left();
padding: @vertical-padding / 2 0;
}
.pagination-control {
.pull-left();
padding: @vertical-padding / 2 @horizontal-padding;
}
.sort-control {
.pull-right();
padding: @vertical-padding / 2 0;
}
.selection-info {
.pull-right();
padding: @vertical-padding / 2 0;
} }
} }