1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
.pagination-control {
li > a {
color: var(--control-color, @control-color);
border-radius: .25em;
}
li > a:hover {
background: var(--control-hover-bg, @control-hover-bg);
}
.previous-page,
.next-page {
padding: .5em .25em;
i {
display: block;
}
i:before {
margin: 0;
}
}
.previous-page > i {
margin-left: -.125em;
}
.next-page > i {
margin-right: -.125em;
}
}
// Style
.control-button {
.appearance(none);
background: none;
border: none;
color: var(--control-color, @control-color);
.rounded-corners();
&:hover, &:focus, &.active {
background-color: var(--control-hover-bg, @control-hover-bg);
text-decoration: none;
}
&.disabled {
color: var(--control-disabled-color, @control-disabled-color);
&:hover {
background: none;
}
}
i.icon:before {
color: inherit;
}
}
// Layout
.control-button {
display: inline-block;
padding: .25em .5em;
> i.icon {
display: inline-flex;
align-items: center;
height: 100%;
}
i.icon:before {
margin-right: 0;
}
}
.sort-control {
display: flex;
justify-content: flex-end;
.form-element {
display: inline-flex;
align-items: baseline;
margin-right: .5em;
label {
margin-right: .5em;
}
}
.control-button {
margin: 0;
}
}
.search-controls {
display: flex;
min-width: 100%;
.search-bar {
flex: 1 1 auto;
& ~ .control-button {
margin-left: .5em;
}
}
}
/**
The default layout of list controls in Icinga Web
┌────────────────────────────────────────────────────────────────┐
│ .pagination-control .limit-control .sort-control │
│ <-------------------- .search-controls ----------------------> │
└────────────────────────────────────────────────────────────────┘
*/
.controls.default-layout {
.box-shadow(0, 0, 0, 1px, @controls-separator-bg);
z-index: 1; // The content may clip, this ensures the separator is always visible
& + .content {
z-index: 0;
}
> .pagination-control {
float: left;
}
> .sort-control,
> .limit-control {
float: right;
}
> .limit-control {
margin-right: .5em;
}
> .search-controls {
clear: both;
}
> :not(:only-child) {
margin-bottom: 0.5em;
}
> .sort-control,
> .search-controls > .control-button:last-child {
margin-right: -.5em;
}
> .search-controls > .search-bar .search-suggestions {
// Suggestions should be kept at a distance from the bottom of the page
margin-bottom: 2.5em;
}
> .search-controls > .search-bar .filter-input-area {
--term-padding-v: 0px;
}
}
|