Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 14427 was 13854, checked in by jlodewyc, 9 years ago

#2582 Core update, pre migration

File size: 5.8 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 !important;
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
140
141[animate-on-change] {
142    transition: all 1s;
143    -webkit-transition: all 1s;
144}
145
146    [animate-on-change].changed {
147        background-color: lightblue;
148        transition: none;
149        -webkit-transition: none;
150    }
151
152    [animate-on-change].changedshut {
153        background-color: lightsalmon;
154        transition: none;
155        -webkit-transition: none;
156    }
157
158    .panel-heading .nav-justified.nav-pills li.active>a{
159        background-color:#74a9d8 !important;
160    }
161    rect{
162        -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
163-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
164box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
165    }
166
167    /***************************** Required styles *****************************/
168
169/**
170 * For the correct positioning of the placeholder element, the dnd-list and
171 * it's children must have position: relative
172 */
173 ul[dnd-list],
174 ul[dnd-list] > li {
175  position: relative;
176}
177
178/***************************** Dropzone Styling *****************************/
179
180/**
181 * The dnd-list should always have a min-height,
182 * otherwise you can't drop to it once it's empty
183 */
184 .dropzone ul[dnd-list] {
185    min-height: 42px;
186    margin: 0px;
187    padding-left: 0px;
188}
189
190/**
191 * The dnd-lists's child elements currently MUST have
192 * position: relative. Otherwise we can not determine
193 * whether the mouse pointer is in the upper or lower
194 * half of the element we are dragging over. In other
195 * browsers we can use event.offsetY for this.
196 */
197 .dropzone li {
198    background-color: #fff;
199    border: 1px solid rgba(0,0,0,0.3) ;
200    border-radius:25px;
201    display: block;
202    padding: 0px;
203}
204
205/**
206 * Reduce opacity of elements during the drag operation. This allows the user
207 * to see where he is dropping his element, even if the element is huge. The
208 * .dndDragging class is automatically set during the drag operation.
209 */
210 .dropzone .dndDragging {
211    opacity: 0.7;
212}
213
214/**
215 * The dndDraggingSource class will be applied to the source element of a drag
216 * operation. It makes sense to hide it to give the user the feeling that he's
217 * actually moving it. Note that the source element has also .dndDragging class.
218 */
219 .dropzone .dndDraggingSource {
220    display: none;
221}
222
223/**
224 * An element with .dndPlaceholder class will be added as child of the dnd-list
225 * while the user is dragging over it.
226 */
227 .dropzone .dndPlaceholder {
228    background-color: #ddd;
229    min-height: 42px;
230    display: block;
231    position: relative;
232}
233
234/***************************** Element Selection *****************************/
235
236 .dropzone .selected {
237    background-color: #dff0d8 !important;
238}
239
240 .dropzone .selected .box {
241    border-color: #d6e9c6;
242}
243
244
245/***************************** Element type specific styles *****************************/
246
247 .dropzone .item {
248    padding: 10px 15px;
249}
250
251 .dropzone .container-element {
252    margin: 10px;
253}
254
255
256/***************************** Toolbox *****************************/
257
258 .toolbox ul {
259    list-style: none;
260    padding-left: 0px;
261    cursor: move;
262}
263
264 .toolbox button {
265    margin: 5px;
266    width: 123px;
267    opacity: 1.0;
268}
269
270 .toolbox .dndDragging {
271    opacity: 0.5;
272}
273
274 .toolbox .dndDraggingSource {
275    opacity: 1.0;
276}
277
278/***************************** Trashcan *****************************/
279
280 .trashcan ul {
281    list-style: none;
282    padding-left: 0px;
283}
284
285 .trashcan img {
286    width: 100%;
287    -webkit-filter: grayscale(100%);
288    -moz-filter: grayscale(100%);
289    filter: grayscale(100%);
290}
291
292 .trashcan .dndDragover img {
293    width: 100%;
294    -webkit-filter: none;
295    -moz-filter: none;
296    filter: none;
297}
298
299 .trashcan .dndPlaceholder {
300    display: none;
301}
Note: See TracBrowser for help on using the repository browser.