Skip to content

Commit abf200b

Browse files
committed
Version v0.6.1
1 parent a61d304 commit abf200b

File tree

279 files changed

+111134
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

279 files changed

+111134
-0
lines changed

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v0.6.1

asset/css/awesome-icons.less

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
@font-face {
2+
font-family: 'Font Awesome 5 Free';
3+
font-style: normal;
4+
font-weight: 400;
5+
font-display: block;
6+
src: url('@{iplWebAssets}/font/awesome/fa-regular-400.eot');
7+
src: url('@{iplWebAssets}/font/awesome/fa-regular-400.eot?#iefix') format('embedded-opentype'),
8+
url('@{iplWebAssets}/font/awesome/fa-regular-400.woff2') format('woff2'),
9+
url('@{iplWebAssets}/font/awesome/fa-regular-400.woff') format('woff'),
10+
url('@{iplWebAssets}/font/awesome/fa-regular-400.ttf') format('truetype'),
11+
url('@{iplWebAssets}/font/awesome/fa-regular-400.svg#fontawesome') format('svg');
12+
}
13+
14+
.far {
15+
font-family: 'Font Awesome 5 Free';
16+
font-weight: 400;
17+
}
18+
19+
@font-face {
20+
font-family: 'Font Awesome 5 Free';
21+
font-style: normal;
22+
font-weight: 900;
23+
font-display: block;
24+
src: url('@{iplWebAssets}/font/awesome/fa-solid-900.eot');
25+
src: url('@{iplWebAssets}/font/awesome/fa-solid-900.eot?#iefix') format('embedded-opentype'),
26+
url('@{iplWebAssets}/font/awesome/fa-solid-900.woff2') format('woff2'),
27+
url('@{iplWebAssets}/font/awesome/fa-solid-900.woff') format('woff'),
28+
url('@{iplWebAssets}/font/awesome/fa-solid-900.ttf') format('truetype'),
29+
url('@{iplWebAssets}/font/awesome/fa-solid-900.svg#fontawesome') format('svg');
30+
}
31+
32+
.fa,
33+
.fas {
34+
font-family: 'Font Awesome 5 Free';
35+
font-weight: 900;
36+
}

asset/css/balls.less

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
@ball-pad: 1/6em;
2+
3+
.ball {
4+
border-radius: 50%;
5+
display: inline-block;
6+
text-align: center;
7+
}
8+
9+
.ball-size-xs {
10+
height: 1/3em;
11+
width: 1/3em;
12+
}
13+
14+
.ball-size-s {
15+
height: 0.5em;
16+
width: 0.5em;
17+
}
18+
19+
.ball-size-m {
20+
height: 0.75em;
21+
width: 0.75em;
22+
line-height: 0;
23+
24+
i.icon:before {
25+
font-size: .75 - @ball-pad * 2;
26+
line-height: 1em;
27+
}
28+
}
29+
30+
.ball-size-l {
31+
height: 1.5em;
32+
width: 1.5em;
33+
line-height: 1em;
34+
35+
i.icon:before {
36+
font-size: 1 - @ball-pad * 2;
37+
line-height: 1.5 - @ball-pad * 2;
38+
}
39+
}
40+
41+
.ball-size-xl {
42+
width: 2em;
43+
height: 2em;
44+
45+
i.icon:before {
46+
line-height: 2 - @ball-pad * 2;
47+
}
48+
}
49+
50+
.ball-outline(@color) {
51+
border: @ball-pad solid @color;
52+
color: @color;
53+
}
54+
55+
.ball-solid(@color) {
56+
background-color: @color;
57+
color: white;
58+
padding: @ball-pad;
59+
}
60+
61+
.state-ball {
62+
.ball();
63+
64+
&.state-pending {
65+
.ball-solid(@color-pending);
66+
}
67+
68+
&.state-up:not(.ball-size-l):not(.ball-size-xl) {
69+
.ball-solid(@color-up);
70+
}
71+
72+
&.state-up.ball-size-l,
73+
&.state-up.ball-size-xl {
74+
.ball-outline(@color-up);
75+
}
76+
77+
&.state-down {
78+
.ball-solid(@color-down);
79+
}
80+
81+
&.state-ok:not(.ball-size-l):not(.ball-size-xl) {
82+
.ball-solid(@color-ok);
83+
}
84+
85+
&.state-ok.ball-size-l,
86+
&.state-ok.ball-size-xl {
87+
.ball-outline(@color-ok);
88+
}
89+
90+
&.state-warning {
91+
.ball-solid(@color-warning);
92+
}
93+
94+
&.state-critical {
95+
.ball-solid(@color-critical);
96+
}
97+
98+
&.state-unknown {
99+
.ball-solid(@color-unknown);
100+
}
101+
102+
&.handled {
103+
opacity: 0.6;
104+
}
105+
106+
i {
107+
text-align: center;
108+
&:before {
109+
margin-right: 0;
110+
}
111+
}
112+
}

asset/css/continue-with.less

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
// Style
2+
3+
.continue-with {
4+
> i.icon:before {
5+
color: @disabled-gray;
6+
}
7+
8+
a:hover, a:focus, a.active {
9+
.rounded-corners();
10+
background-color: @icinga-blue;
11+
12+
i.icon:before {
13+
color: @text-color-on-icinga-blue;
14+
}
15+
}
16+
}
17+
18+
// Layout
19+
20+
.continue-with {
21+
> i.icon,
22+
a {
23+
display: inline-flex;
24+
align-items: center;
25+
padding: 0 .5em;
26+
height: 100%;
27+
}
28+
29+
i.icon:before {
30+
font-size: 1.2em;
31+
margin-right: 0;
32+
}
33+
}

asset/css/controls.less

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
.pagination-control {
2+
li > a {
3+
color: @icinga-blue;
4+
border-radius: .25em;
5+
}
6+
7+
li > a:hover {
8+
background: @gray-lighter;
9+
}
10+
11+
.previous-page,
12+
.next-page {
13+
padding: .5em .25em;
14+
15+
i {
16+
display: inline-block;
17+
}
18+
19+
i:before {
20+
margin: 0;
21+
}
22+
}
23+
24+
.previous-page > i {
25+
margin-left: -.125em;
26+
}
27+
28+
.next-page > i {
29+
margin-right: -.125em;
30+
}
31+
}
32+

asset/css/datetime-picker.less

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.flatpickr-input + .input {
2+
padding-right: 2em;
3+
4+
& + .fa-calendar {
5+
margin: .5em 1em 0 -3.5em;
6+
padding: 0 .5em 0 1em;
7+
pointer-events: none;
8+
}
9+
}

0 commit comments

Comments
 (0)