blob: 41400e52f1854fa666fc8952fd93eb86186d74f0 (
plain)
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
|
.service-grid-table {
width: 0;
white-space: nowrap;
td {
color: @gray-light;
padding: 0.2em;
text-align: center;
width: 1em;
}
.rotate-45 {
height: 10em;
div {
.transform(translate(0.4em, 2.8em) rotate(315deg));
width: 1.5em;
}
}
.service-grid-table-more {
text-align: center;
a {
display: inline;
}
}
}
.joystick-pagination {
margin: 0 auto;
font-size: 130%;
a {
color: @text-color;
outline: none;
&:hover {
color: @text-color-light;
}
&:focus, &:active {
color: @icinga-blue;
}
}
i {
display: block;
height: 1.5em;
width: 1.5em;
}
}
.service-grid-link {
.bg-stateful();
.rounded-corners();
display: inline-block;
height: 1.5em;
vertical-align: middle;
width: 1.5em;
}
|