blob: 6b99a28140e9769883b3bf6b249f1d2563eb7b24 (
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
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
|
.view-color-green {
background-color: rgba(77, 250, 144, 0.3);
}
.view-color-yellow {
background-color: rgba(250, 190, 77, 0.3);
}
.view-color-red {
background-color: rgba(255, 84, 104, 0.3);
}
.view-item-disabled {
opacity: 0.5;
}
.toolbar-header-style {
background-color: #337729 !important;
}
.x-panel-header-default {
background-color: #337729 !important;
border: 1px solid #337729 !important;
}
.x-tool-tool-el {
background-color: #337729 !important;
border: 1px solid #337729 !important;
}
.x-window-default {
border: 1px solid #337729 !important;
}
.x-window-header-default-top {
background-color: #337729 !important;
border: 1px solid #337729 !important;
}
#eventsView-1102-placeholder {
background-color: #efdb1e !important;
border: 1px solid #efdb1e !important;
}
#eventsView-1102-placeholder-title-textEl {
color: #337729 !important;
}
#tbtext-1109 {
color: #337729 !important;
}
#toolbar-1108 {
background-color: #efdb1e !important;
border: 1px solid #efdb1e !important;
}
body.x-border-layout-ct, div.x-border-layout-ct {
background-color: #bbbbbb !important;
}
.x-fieldset {
overflow: visible !important; /* workaround for Safari issue */
}
#update {
position: absolute;
width: 100%;
top: 20px;
font-weight: bold;
text-align: center;
}
#attribution {
position: absolute;
bottom: 10px;
right: 15px;
font-size: x-small;
}
#spinner:before {
content: '';
box-sizing: border-box;
position: absolute;
top: 50%;
left: 50%;
width: 60px;
height: 60px;
margin-top: -30px;
margin-left: -30px;
border-radius: 50%;
border-top: 6px solid #337729;
border-right: 6px solid transparent;
animation: spinner .6s linear infinite;
}
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
|