Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Scripts/Styling/StyleSheet.css @ 13758

Last change on this file since 13758 was 13758, checked in by jlodewyc, 8 years ago

#2582 Calendar basic interactions working. Timezone working correct. Next: saving to server

File size: 3.7 KB
Line 
1@import url(http://fonts.googleapis.com/css?family=Roboto:400);
2
3body {
4    background-color: #fff;
5    -webkit-font-smoothing: antialiased;
6    font: normal 14px Roboto,arial,sans-serif;
7}
8
9.container {
10    padding: 25px;
11    position: fixed;
12}
13
14
15.form-login {
16    background-color: #EDEDED;
17    padding-top: 10px;
18    padding-bottom: 20px;
19    padding-left: 20px;
20    padding-right: 20px;
21    border-radius: 15px;
22    border-color: #d2d2d2;
23    border-width: 5px;
24    box-shadow: 0 1px 0 #cfcfcf;
25}
26
27h4 {
28    border: 0 solid #fff;
29    border-bottom-width: 1px;
30    padding-bottom: 10px;
31    text-align: center;
32}
33
34.form-control {
35    border-radius: 10px;
36}
37
38.wrapper {
39    text-align: center;
40}
41
42.panel-warning > .panel-heading {
43    background-image: linear-gradient(to bottom,#eb9114 0,#f1b25b 100%) !important;
44    color: white !important;
45}
46
47.panel-danger > .panel-heading {
48    background-image: linear-gradient(to bottom,#c12e2a 0,#d9534f 100%) !important;
49    color: white !important;
50}
51
52.label-as-badge {
53    border-radius: 1em;
54}
55
56.bar-off {
57    fill: #c2c2d6;
58}
59
60    .bar-off:hover {
61        fill: #e0e0eb;
62    }
63
64.bar-wait {
65    fill: #f0a742;
66}
67
68    .bar-wait:hover {
69        fill: #f4bd71;
70    }
71
72.bar-trans {
73    fill: #80d4ff;
74}
75
76    .bar-trans:hover {
77        fill: #99ddff;
78    }
79
80.bar-calc {
81    fill: #2f6fa6;
82}
83
84    .bar-calc:hover {
85        fill: #3884c7;
86    }
87
88.bar-paus {
89    fill: #47476b;
90}
91
92    .bar-paus:hover {
93        fill: #5c5c8a;
94    }
95
96.bar-fin {
97    fill: #5cb85c;
98}
99
100    .bar-fin:hover {
101        fill: #71c171;
102    }
103
104.bar-abo {
105    fill: #c2302c;
106}
107
108    .bar-abo:hover {
109        fill: #d54944;
110    }
111
112.bar-fail {
113    fill: #c2302c;
114}
115
116    .bar-fail:hover {
117        fill: #d54944;
118    }
119
120rect.selection {
121    stroke: gray;
122    stroke-dasharray: 4px;
123    stroke-opacity: 0.5;
124    fill: transparent;
125}
126
127/* disable text selection */
128svg *::selection {
129    background: transparent;
130}
131
132svg *::-moz-selection {
133    background: transparent;
134}
135
136svg *::-webkit-selection {
137    background: transparent;
138}
139
140div[data-angular-treeview] {
141    /* prevent user selection */
142    -moz-user-select: -moz-none;
143    -khtml-user-select: none;
144    -webkit-user-select: none;
145    -ms-user-select: none;
146    user-select: none;
147    /* default */
148    font-family: Tahoma;
149    font-size: 13px;
150    color: #555;
151    text-decoration: none;
152}
153
154div[data-tree-model] ul {
155    margin: 0;
156    padding: 0;
157    list-style: none;
158    border: none;
159    overflow: hidden;
160}
161
162div[data-tree-model] li {
163    position: relative;
164    padding: 0 0 0 20px;
165    line-height: 20px;
166}
167
168    div[data-tree-model] li .expanded {
169        padding: 1px 10px;
170        background-image: url('../../wwwroot/img/computer_network-256.png');
171        background-repeat: no-repeat;
172    }
173
174    div[data-tree-model] li .collapsed {
175        padding: 1px 10px;
176        background-image: url('../../wwwroot/img/computer_network-256.png');
177        background-repeat: no-repeat;
178    }
179
180    div[data-tree-model] li .normal {
181        padding: 1px 10px;
182        background-image: url('../../wwwroot/img/plainicon.com-51131-512px-515.png');
183        background-repeat: no-repeat;
184    }
185
186    div[data-tree-model] li i, div[data-tree-model] li span {
187        cursor: pointer;
188    }
189
190    div[data-tree-model] li .selected {
191        background-color: #aaddff;
192        font-weight: bold;
193        padding: 1px 5px;
194    }
195    div[data-tree-model] li .changed {
196        background-color: #ffff00;
197        font-weight: bold;
198        padding: 1px 5px;
199    }
200    div[data-tree-model] li .loaded{
201        text-decoration:underline;
202        font-style:oblique;
203    }
Note: See TracBrowser for help on using the repository browser.