1 | * {
|
---|
2 | -webkit-border-radius: 0 !important;
|
---|
3 | -moz-border-radius: 0 !important;
|
---|
4 | border-radius: 0 !important;
|
---|
5 | /* -webkit-box-shadow: none !important;
|
---|
6 | -moz-box-shadow: none !important;
|
---|
7 | -o-box-shadow: none !important;
|
---|
8 | box-shadow: none !important;*/
|
---|
9 | font-family: "Open Sans", Helvetica, Arial, sans-serif;
|
---|
10 | }
|
---|
11 |
|
---|
12 | html {
|
---|
13 | height: 100%;
|
---|
14 | overflow-y: scroll;
|
---|
15 | }
|
---|
16 |
|
---|
17 | body {
|
---|
18 | width: 100%;
|
---|
19 | height: 100%;
|
---|
20 | margin: 0;
|
---|
21 | padding: 0;
|
---|
22 | }
|
---|
23 |
|
---|
24 | .no-border {
|
---|
25 | border: none;
|
---|
26 | }
|
---|
27 |
|
---|
28 | .no-padding-margin {
|
---|
29 | padding: 0;
|
---|
30 | margin: 0;
|
---|
31 | }
|
---|
32 |
|
---|
33 | /* bootstrap style changes */
|
---|
34 | .panel {
|
---|
35 | border: 1px #D3D3D3;
|
---|
36 | margin-bottom: 30px;
|
---|
37 | }
|
---|
38 |
|
---|
39 | .panel-default {
|
---|
40 | border: 1px #D3D3D3;
|
---|
41 | }
|
---|
42 |
|
---|
43 | .panel-default > .panel-heading {
|
---|
44 | background: #FAFAFA;
|
---|
45 | /*border-top: 3px solid #f7921d;*/
|
---|
46 | }
|
---|
47 |
|
---|
48 | .panel-default > .panel-body {
|
---|
49 | }
|
---|
50 |
|
---|
51 | .panel-title {
|
---|
52 | color: #AAA;
|
---|
53 | font-weight: 600;
|
---|
54 | }
|
---|
55 |
|
---|
56 | .breadcrumb {
|
---|
57 | background: transparent;
|
---|
58 | }
|
---|
59 |
|
---|
60 | .btn-default {
|
---|
61 | background-image: none;
|
---|
62 | background-repeat: no-repeat;
|
---|
63 | background-color: #F5F5F5;
|
---|
64 | }
|
---|
65 |
|
---|
66 | /* app */
|
---|
67 |
|
---|
68 | #app {
|
---|
69 | position: relative;
|
---|
70 | min-height: 100%;
|
---|
71 | display: block;
|
---|
72 | overflow: hidden;
|
---|
73 | background: #EEEEEE;
|
---|
74 | }
|
---|
75 |
|
---|
76 | #toolbar {
|
---|
77 | background: #5E5E5E;
|
---|
78 | }
|
---|
79 |
|
---|
80 | #menu {
|
---|
81 | position: relative;
|
---|
82 | background: #FAFAFA;
|
---|
83 | display: block;
|
---|
84 | overflow: hidden;
|
---|
85 | z-index: 10000;
|
---|
86 | width: 100%;
|
---|
87 | }
|
---|
88 |
|
---|
89 | .category {
|
---|
90 | font-weight: bold;
|
---|
91 | color: #AAAAAA;
|
---|
92 | text-transform: uppercase;
|
---|
93 | margin-top: 28px;
|
---|
94 | margin-left: 22px;
|
---|
95 | margin-right: 22px;
|
---|
96 | padding-bottom: 5px;
|
---|
97 | border-bottom: 1px solid #E3E3E3;
|
---|
98 | }
|
---|
99 |
|
---|
100 | #view {
|
---|
101 | position: relative;
|
---|
102 | left: 0;
|
---|
103 | margin-left: 0px;
|
---|
104 | display: block;
|
---|
105 | overflow: hidden;
|
---|
106 | }
|
---|
107 |
|
---|
108 |
|
---|
109 | .view-header {
|
---|
110 | background: #FAFAFA;
|
---|
111 | border-bottom: 1px solid #D3D3D3;
|
---|
112 | height: 51px;
|
---|
113 | }
|
---|
114 |
|
---|
115 | .no-border {
|
---|
116 | border: none;
|
---|
117 | padding: 0;
|
---|
118 | margin: 0;
|
---|
119 | }
|
---|
120 |
|
---|
121 | .container-fluid {
|
---|
122 | margin: 0;
|
---|
123 | padding: 0;
|
---|
124 | }
|
---|
125 |
|
---|
126 | .navbar-header {
|
---|
127 | width: 100%;
|
---|
128 | background: #3c3a39;
|
---|
129 | color: #FFFFFF;
|
---|
130 | float: left;
|
---|
131 | }
|
---|
132 |
|
---|
133 |
|
---|
134 | @media (min-width: 768px) {
|
---|
135 | #view {
|
---|
136 | margin-left: 250px;
|
---|
137 | }
|
---|
138 |
|
---|
139 | #menu {
|
---|
140 | visibility: visible;
|
---|
141 | position: absolute;
|
---|
142 | width: 250px;
|
---|
143 | min-height: inherit;
|
---|
144 | border-right: 1px solid #D3D3D3;
|
---|
145 | z-index: 0;
|
---|
146 | }
|
---|
147 |
|
---|
148 | .navbar-header {
|
---|
149 | width: 250px;
|
---|
150 | }
|
---|
151 | }
|
---|
152 | .container-fluid .navbar-header {
|
---|
153 | margin: 0;
|
---|
154 | padding: 0;
|
---|
155 | }
|
---|
156 |
|
---|
157 | .navbar-nav {
|
---|
158 | margin: 0;
|
---|
159 | padding: 0;
|
---|
160 | }
|
---|
161 |
|
---|
162 | .navbar-right {
|
---|
163 | float: right!important
|
---|
164 | }
|
---|
165 |
|
---|
166 | .navbar-nav>li>a {
|
---|
167 | padding-top: 15px;
|
---|
168 | padding-bottom: 15px;
|
---|
169 | }
|
---|
170 |
|
---|
171 | .navbar-content {
|
---|
172 | padding-right: 15px;
|
---|
173 | }
|
---|
174 |
|
---|
175 | .navbar-nav > li {
|
---|
176 | float: left;
|
---|
177 | }
|
---|
178 |
|
---|
179 | .navbar-default {
|
---|
180 | }
|
---|
181 |
|
---|
182 | .navbar-brand {
|
---|
183 | font-weight: bold;
|
---|
184 | color: #FFFFFF !important;
|
---|
185 | }
|
---|
186 |
|
---|
187 | .nav-sidebar {
|
---|
188 | font-size: 12px;
|
---|
189 | padding-bottom: 30px;
|
---|
190 | }
|
---|
191 |
|
---|
192 | .nav-sidebar > li > a {
|
---|
193 | font-size: 13px;
|
---|
194 | color: #555555;
|
---|
195 | text-transform: capitalize;
|
---|
196 | letter-spacing: 0.5px;
|
---|
197 | padding-right: 20px;
|
---|
198 | padding-left: 20px;
|
---|
199 | border-left: 3px solid transparent;
|
---|
200 | }
|
---|
201 | .nav-sidebar > li > a:hover {
|
---|
202 | font-weight: bold;
|
---|
203 | color: #000000;
|
---|
204 | background-color: #5c5a59;
|
---|
205 | background-color: transparent;
|
---|
206 | background-color: #F5F5F5;
|
---|
207 | border-left: 3px solid #f7921d;
|
---|
208 | }
|
---|
209 |
|
---|
210 | .nav-sidebar > li > a:focus {
|
---|
211 | background-color: #F5F5F5;
|
---|
212 | }
|
---|
213 |
|
---|
214 | .nav-sidebar > .active > a,
|
---|
215 | .nav-sidebar > .active > a:hover {
|
---|
216 | font-weight: bold;
|
---|
217 | color: #000000;
|
---|
218 | background-color: #5c5a59;
|
---|
219 | background-color: transparent;
|
---|
220 | background-color: #F5F5F5;
|
---|
221 | border-left: 3px solid #f7921d;
|
---|
222 | }
|
---|
223 |
|
---|
224 |
|
---|
225 | .nav-sub-sidebar {
|
---|
226 | font-size: 10px;
|
---|
227 | }
|
---|
228 |
|
---|
229 | .nav-sub-sidebar > li > a {
|
---|
230 | font-size: 11px;
|
---|
231 | color: #555555;
|
---|
232 | text-transform: capitalize;
|
---|
233 | letter-spacing: 0.5px;
|
---|
234 | padding-right: 20px;
|
---|
235 | padding-left: 35px;
|
---|
236 | border-left: 3px solid transparent;
|
---|
237 | }
|
---|
238 | .nav-sub-sidebar > li > a:hover {
|
---|
239 | font-weight: bold;
|
---|
240 | color: #000000;
|
---|
241 | background-color: #5c5a59;
|
---|
242 | background-color: transparent;
|
---|
243 | background-color: #F5F5F5;
|
---|
244 | border-left: 3px solid #DD4B39;
|
---|
245 | }
|
---|
246 |
|
---|
247 | .nav-sub-sidebar > li > a:focus {
|
---|
248 | background-color: #F5F5F5;
|
---|
249 | }
|
---|
250 |
|
---|
251 | .nav-sub-sidebar > .active > a,
|
---|
252 | .nav-sub-sidebar > .active > a:hover {
|
---|
253 | font-weight: bold;
|
---|
254 | color: #000000;
|
---|
255 | background-color: #5c5a59;
|
---|
256 | background-color: transparent;
|
---|
257 | background-color: #F5F5F5;
|
---|
258 | border-left: 3px solid #DD4B39;
|
---|
259 | }
|
---|
260 |
|
---|
261 | .nav-list {
|
---|
262 | margin-bottom: 20px;
|
---|
263 | }
|
---|
264 | .nav-list li {
|
---|
265 | display: inline-block;
|
---|
266 | }
|
---|
267 | .nav-list li.active a {
|
---|
268 | color: #444;
|
---|
269 | border-bottom: 3px solid #4a89dc;
|
---|
270 | }
|
---|
271 | .nav-list li a {
|
---|
272 | color: #AAA;
|
---|
273 | font-weight: 600;
|
---|
274 | border-bottom: 3px solid transparent;
|
---|
275 | }
|
---|
276 | .nav-list li a:hover,
|
---|
277 | .nav-list li a:focus {
|
---|
278 | color: #444;
|
---|
279 | background-color: transparent;
|
---|
280 | }
|
---|
281 | .nav-list.nav-list-sm li a {
|
---|
282 | padding: 10px 8px;
|
---|
283 | }
|
---|
284 |
|
---|
285 | .nav.nav-list-topbar {
|
---|
286 | margin-left: 10px;
|
---|
287 | }
|
---|
288 | .nav.nav-list-topbar li a {
|
---|
289 | padding: 16px 14px 12px;
|
---|
290 | }
|
---|
291 | .nav.nav-list-topbar li.active a {
|
---|
292 | color: #f7921d;
|
---|
293 | border-bottom: 3px solid #f7921d;
|
---|
294 | }
|
---|
295 |
|
---|
296 |
|
---|
297 | #status {
|
---|
298 | padding: 30px;
|
---|
299 | }
|
---|
300 |
|
---|
301 | textarea:focus,
|
---|
302 | input[type="button"]:focus,
|
---|
303 | input[type="text"]:focus,
|
---|
304 | input[type="password"]:focus,
|
---|
305 | input[type="datetime"]:focus,
|
---|
306 | input[type="datetime-local"]:focus,
|
---|
307 | input[type="date"]:focus,
|
---|
308 | input[type="month"]:focus,
|
---|
309 | input[type="time"]:focus,
|
---|
310 | input[type="week"]:focus,
|
---|
311 | input[type="number"]:focus,
|
---|
312 | input[type="email"]:focus,
|
---|
313 | input[type="url"]:focus,
|
---|
314 | input[type="search"]:focus,
|
---|
315 | input[type="tel"]:focus,
|
---|
316 | input[type="color"]:focus,
|
---|
317 | .uneditable-input:focus {
|
---|
318 | border-color: #f7921d;
|
---|
319 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(247, 146, 29, 0.6);
|
---|
320 | outline: 0 none;
|
---|
321 | }
|
---|
322 |
|
---|
323 | .angular-flot-chart {
|
---|
324 | display: block;
|
---|
325 | width: 100%;
|
---|
326 | height: 300px;
|
---|
327 | }
|
---|
328 |
|
---|
329 | .table-no-border>thead>tr>th,
|
---|
330 | .table-no-border>tbody>tr>th,
|
---|
331 | .table-no-border>tfoot>tr>th,
|
---|
332 | .table-no-border>thead>tr>td,
|
---|
333 | .table-no-border>tbody>tr>td,
|
---|
334 | .table-no-border>tfoot>tr>td,
|
---|
335 | .table-no-border>tbody,
|
---|
336 | .table-no-border>thead,
|
---|
337 | .table-no-border>tfoot{
|
---|
338 | border-top: none !important;
|
---|
339 | border-bottom: none !important;
|
---|
340 | }
|
---|
341 |
|
---|
342 | .table-auto-width {
|
---|
343 | width: auto !important;
|
---|
344 | }
|
---|
345 |
|
---|
346 | .center-element {
|
---|
347 | margin: 0 auto;
|
---|
348 | }
|
---|
349 |
|
---|
350 | .table-content {
|
---|
351 | margin-bottom: 0;
|
---|
352 | }
|
---|
353 |
|
---|
354 | #top-navbar {
|
---|
355 | margin-right: 15px;
|
---|
356 | }
|
---|
357 |
|
---|
358 | [ng-click],
|
---|
359 | [data-ng-click],
|
---|
360 | [x-ng-click] {
|
---|
361 | cursor: pointer;
|
---|
362 | }
|
---|
363 |
|
---|
364 | .navbar-default .navbar-brand {
|
---|
365 | text-shadow: none !important;
|
---|
366 | }
|
---|
367 |
|
---|
368 | .navbar-default .navbar-nav > li > a {
|
---|
369 | color: #ffffff;
|
---|
370 | text-shadow: none !important;
|
---|
371 | }
|
---|
372 |
|
---|
373 | .navbar-default .navbar-nav > li > a:focus {
|
---|
374 | color: #ffffff;
|
---|
375 | text-shadow: none !important;
|
---|
376 | }
|
---|
377 |
|
---|
378 | .navbar-default .navbar-nav > li > a:hover {
|
---|
379 | color: #ffffff;
|
---|
380 | background-color: #7E7E7E;
|
---|
381 | text-shadow: none !important;
|
---|
382 | }
|
---|
383 |
|
---|
384 | .navbar-default .navbar-text {
|
---|
385 | display: block;
|
---|
386 | color: #ffffff;
|
---|
387 | text-shadow: none !important;
|
---|
388 | margin: 0;
|
---|
389 | padding: 15px;
|
---|
390 | }
|
---|
391 |
|
---|
392 | .navbar-nav {
|
---|
393 | float:left;
|
---|
394 | margin:0
|
---|
395 | }
|
---|
396 |
|
---|
397 | .navbar-nav>li {
|
---|
398 | float:left
|
---|
399 | }
|
---|
400 |
|
---|
401 | .navbar-nav>li>a {
|
---|
402 | padding-top:15px;
|
---|
403 | padding-bottom:15px
|
---|
404 | }
|
---|
405 |
|
---|
406 | .navbar-toggle {
|
---|
407 | border: none !important;
|
---|
408 | }
|
---|
409 |
|
---|
410 | .navbar-toggle:focus {
|
---|
411 | background-color: transparent !important;
|
---|
412 | }
|
---|
413 |
|
---|
414 | .navbar-toggle:hover {
|
---|
415 | background-color: #D3D3D3 !important;
|
---|
416 | }
|
---|
417 |
|
---|
418 | #menu .navbar-collapse {
|
---|
419 | padding: 0;
|
---|
420 | margin: 0;
|
---|
421 | }
|
---|
422 |
|
---|
423 | .default-view-container {
|
---|
424 | padding: 30px;
|
---|
425 | }
|
---|
426 |
|
---|
427 | .panel-heading a:after {
|
---|
428 | font-family:'Glyphicons Halflings';
|
---|
429 | content:"\e114";
|
---|
430 | float: right;
|
---|
431 | color: grey;
|
---|
432 | }
|
---|
433 | .panel-heading a.collapsed:after {
|
---|
434 | content:"\e080";
|
---|
435 | }
|
---|
436 |
|
---|
437 | .panel-heading a:focus, a:hover {
|
---|
438 | text-decoration: none;
|
---|
439 | } |
---|