-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
68 lines (59 loc) · 1.12 KB
/
styles.css
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
.mod-mi--view [data-toggle=collapse] {
padding: 5px;
background: #fbfbfb;
border: 1px solid #eee;
border-radius: 3px;
font-weight: bold;
cursor: pointer;
margin-bottom: 5px;
}
.mod-mi--view [data-toggle=collapse]:before {
content: "▾";
}
.mod-mi--view [data-toggle=collapse].collapsed:before {
content: "▸";
}
.mod-mi--section {
margin-left: 10px;
margin-bottom: 10px;
}
.mi-cockpit {
background: #f9f9f9;
padding: 10px;
margin: 15px 0;
border-radius: 5px;
}
.mi-cockpit-section, .mi-cockpit-line {
margin-bottom: 15px;
}
.mi-cockpit-section:last-child, .mi-cockpit-line:last-child {
margin-bottom: 0;
}
@media(min-width: 992px) {
.mi-cockpit {
display: flex;
flex-direction: row;
}
.mi-cockpit-section {
flex: 1;
margin-bottom: 0;
}
}
.mod-mi--view #piechartbox {
width: 100%;
height: 180px;
}
.mod-mi--view #piechartbox.no-data {
padding: 20px;
margin: 0 auto;
border: 1px dotted #ccc;
color: #ccc;
width: 120px;
height: 120px;
border-radius: 60px;
margin-top: 25px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}