blob: 40cfcc325ddae88cb0e7dec5f7891098a453e27e [file] [log] [blame]
teone7ece6822015-12-09 13:10:20 -08001/************************
Scott Baker5e74a262014-03-27 09:21:16 -07002colors:
3 tab - active/focus color
4 background-color: #105E9E !important;
5
6ONLab darker blue select :: background-color: #004775;
7#0170BB
8 left-nav
9 background-color: #448CCA;
10 background-color // normal: #B4CADF
1191BFE4
12
13*************************/
14
teone7ece6822015-12-09 13:10:20 -080015html, body, body.login {
16 height: 100%;
Matteo Scandolo9ff1a2a2015-11-11 12:29:36 +010017 min-height: 100%;
Matteo Scandolo9a607262015-11-10 17:13:04 +010018 margin: 0;
19}
20
Matteo Scandolo9ff1a2a2015-11-11 12:29:36 +010021body{
22 max-width: 100%;
23 overflow-x: hidden;
Matteo Scandolo9a607262015-11-10 17:13:04 +010024}
25
Matteo Scandolo9ff1a2a2015-11-11 12:29:36 +010026/*#wrap {
27 min-height: 100%;
28}*/
29
teoneb885e4f2015-12-09 13:36:44 -080030/* ************************* LOGIN PAGE ************************* */
31
32body.login img.logo{
33 width: 250px;
34 display: block;
35 margin: 20px auto;
36 padding-top: 20px;
37}
38
Matteo Scandoloc442e102015-11-11 11:45:10 +010039/* ************************* SIDENAV TOGGLE ************************* */
40
41#wrapper {
42 padding-left: 0;
43 -webkit-transition: all 0.5s ease;
44 -moz-transition: all 0.5s ease;
45 -o-transition: all 0.5s ease;
46 transition: all 0.5s ease;
47}
48
49#wrapper.toggled {
50 padding-left: 250px;
51}
52
53#sidebar-wrapper {
54 z-index: 1000;
55 position: fixed;
56 left: 250px;
57 width: 0;
58 height: 100%;
59 margin-left: -250px;
60 overflow-y: auto;
61 -webkit-transition: all 0.5s ease;
62 -moz-transition: all 0.5s ease;
63 -o-transition: all 0.5s ease;
64 transition: all 0.5s ease;
65}
66
67#wrapper.toggled #sidebar-wrapper {
68 width: 250px;
69 padding: 10px;
70}
71
72#page-content-wrapper {
73 width: 100%;
74 position: absolute;
75 padding: 15px;
76}
77
78#wrapper.toggled #page-content-wrapper {
79 position: absolute;
80 margin-right: -250px;
81}
82
83@media(min-width:768px) {
84 #wrapper {
85 padding-left: 250px;
86 }
87
88 #wrapper.toggled {
89 padding-left: 0;
90 }
91
92 #sidebar-wrapper {
93 width: 250px;
94 padding: 10px;
95 }
96
97 #wrapper.toggled #sidebar-wrapper {
98 width: 0;
99 }
100
101 #page-content-wrapper {
102 padding: 20px;
103 position: relative;
104 }
105
106 #wrapper.toggled #page-content-wrapper {
107 position: relative;
108 margin-right: 0;
109 }
110}
111
112.navbar-toggle{
113 border: 1px solid #08C;
114}
115
116.navbar-toggle .icon-bar{
117 background: #08C;
118}
119/* ************************* END SIDENAV TOGGLE ************************* */
120
121/* ************************* HEADER STYLE ************************* */
122
123.header{
124 background-color: #ffffff !important;
125 border-bottom: 3px solid #C5CCD4;
126 margin-bottom: 14px;
127 height: 85px;
128}
129
130.header .logo{
131 max-height: 80px;
132}
133
134.nav-quick-search{
135 margin: 30px -10px 0px 0px !important;
136 padding:0 25px 0 0 !important;
137 float:right !important;
138}
139
140.nav-quick-search .search-query{
141 border-radius:5px;
142 border:none;
143 box-shadow:0px;
144 background-color:lightGrey;
145 padding-left: 27px;
146}
147
148
149.header #branding {
150 width: 100%;
151 height:60px;
152 border-right:none;
153}
154
155.header a {
156 color: #08C;
157 font-weight: bold;
158 /*border-bottom: 1px solid #C5CCD4;*/
159}
160a {
161 color: #08C;
162 font-weight: bold;
163 /*border-bottom: 1px solid #C5CCD4;*/
164}
165
166
167#branding2{
168height:20px;
169width:100%;
170color: #333;
171/*background-color: #000000;*/
172margin-bottom: 10px;
173}
174
175.header #user-tools {
176 padding: 12px 20px 0px 0px;
177 float: right;
178 margin-top: -5px;
179}
180
181.header .header-content .date{
182padding-left:10px;
183}
184
185.header .header-content .time {
186font-weight: normal;
187}
188.header .header-content.header-content-first{
189height: 15px;
190padding-bottom: 0px;
191}
192
193.header .header-content {
194padding-bottom: 0px;
195padding: 7px 0 0 0px;
196}
197
198/************************* END HEADER *************************/
199
200/************************* FOOTER *************************/
201
202.footer{
203 z-index: 1001;
Matteo Scandolo545216e2015-12-06 10:20:43 -0800204 position: fixed;
Matteo Scandoloc442e102015-11-11 11:45:10 +0100205}
206
Matteo Scandolo9ff1a2a2015-11-11 12:29:36 +0100207/* FIXME */
208@media(max-width:768px) {
209 .footer{
210 display: none;
211 }
212
213 #page-content-wrapper{
214 padding-bottom: 60px;
215 }
216}
217
Matteo Scandoloc442e102015-11-11 11:45:10 +0100218.footer .content .statusMsg {
219 float: right;
220 padding: 15px 20px 0 0;
221 display: block;
222}
223/************************* END FOOTER *************************/
224
225/************************* NAV *************************/
Matteo Scandolo9ff1a2a2015-11-11 12:29:36 +0100226
227#sidebar-wrapper {
228 -webkit-box-shadow: 3px 0px 5px 0px rgba(50, 50, 50, 0.75);
229 -moz-box-shadow: 3px 0px 5px 0px rgba(50, 50, 50, 0.75);
230 box-shadow: 3px 0px 5px 0px rgba(50, 50, 50, 0.75);
231}
232
Matteo Scandoloc442e102015-11-11 11:45:10 +0100233#sidebar-wrapper .logo{
234 max-width: 100%;
235}
236
Matteo Scandolo95d128c2015-12-07 13:35:29 -0800237.icon-home ,.icon-deployment ,.icon-site ,.icon-slice ,.icon-user, .icon-reservation, .icon-app, .icon-cog {
238 background-position: left center;
239 width:22px;
240 height:22px;
241 display: inline-block;
242 margin-right: 10px;
243 position: relative;
244 top: 5px;
245}
246
Matteo Scandoloc442e102015-11-11 11:45:10 +0100247.icon-app {
248background-image: url("opencloudApp.png");
249}
250.icon-home {
251/* Going with darker standard color nav -- so using over png's background-image: url("Home.png"); */
252background-image: url("Home.png");
253}
254.icon-deployment{
255background-image: url("Deployments.png");
256}
257.icon-site{
258background-image: url("Sites.png");
259}
260.icon-slice{
261background-image: url("Slices.png");
262}
263.icon-user{
264background-image: url("Users.png");
265}
266.icon-reservation{
267background-image: url("Reservations.png");
268}
Matteo Scandolo95d128c2015-12-07 13:35:29 -0800269.icon-cog{
270background-image: url("Services.png");
271}
Matteo Scandoloc442e102015-11-11 11:45:10 +0100272
273#sidebar-wrapper>ul>li.active>a>.icon-home ,
274/*#sidebar-wrapper>ul>li:hover>a>.icon-home ,*/
275#sidebar-wrapper>ul>li.focus>a>.icon-home{
276 background-image: url("Home_over.png");
277}
278
279#sidebar-wrapper>ul>li.active>a>.icon-deployment,
280/*#sidebar-wrapper>ul>li:hover>a>.icon-deployment,*/
281#sidebar-wrapper>ul>li.focus>a>.icon-deployment{
282 background-image: url("Deployments_over.png");
283}
284#sidebar-wrapper>ul>li.active>a>.icon-site,
285/*#sidebar-wrapper>ul>li:hover>a>.icon-site,*/
286#sidebar-wrapper>ul>li.focus>a>.icon-site{
287 background-image: url("Sites_over.png");
288}
289#sidebar-wrapper>ul>li.active>a>.icon-slice,
290/*#sidebar-wrapper>ul>li:hover>a>.icon-slice,*/
291#sidebar-wrapper>ul>li.focus>a>.icon-slice{
292 background-image: url("Slices_over.png");
293}
294#sidebar-wrapper>ul>li.active>a>.icon-user,
295/*#sidebar-wrapper>ul>li:hover>a>.icon-user,*/
296#sidebar-wrapper>ul>li.focus>a>.icon-user{
297 background-image: url("Users_over.png");
298}
299#sidebar-wrapper>ul>li.active>a>.icon-reservation,
300/*#sidebar-wrapper>ul>li:hover>a>.icon-reservation,*/
301#sidebar-wrapper>ul>li.focus>a>.icon-reservation{
302 background-image: url("Reservations_over.png");
303}
Matteo Scandolo95d128c2015-12-07 13:35:29 -0800304
305#sidebar-wrapper>ul>li.active>a>.icon-cog,
306/*#sidebar-wrapper>ul>li:hover>a>.icon-cog,*/
307#sidebar-wrapper>ul>li.focus>a>.icon-cog{
308 background-image: url("Services_over.png");
309}
Matteo Scandoloc442e102015-11-11 11:45:10 +0100310/************************* END NAV *************************/
311
Scott Baker5e74a262014-03-27 09:21:16 -0700312/* CSS for jquery Tabs */
313#hometabs {
314border-bottom: 1px solid #105E9E;
315font-size: 12px;
316border: 0px;
317}
318
Matteo Scandoloac812bd2015-12-07 17:32:39 -0800319.ui-tabs .ui-tabs-nav {
320 padding: 0 !important;
321}
322
Scott Baker5e74a262014-03-27 09:21:16 -0700323.ui-tabs-active {
324 color: #ffffff;
325 background-color: #105E9E;
326 text-shadow: rgb(46, 43, 43) 0.1em 0.1em 0.2em;
327 font-weight: normal;
328}
329.nav > li > a:active {
330 color: #ffffff;
331 background-color: #105E9E;
332 text-shadow: rgb(46, 43, 43) 0.1em 0.1em 0.2em;
333
334}
335.nav > li > a:focus {
336 color: #ffffff;
337 background-color: #105E9E;
338 text-shadow: rgb(46, 43, 43) 0.1em 0.1em 0.2em;
339
340}
341.ui-state-focus a,
342.ui-state-focus a:link{
343 color: #ffffff;
344 background-color: #105E9E;
345 text-shadow: rgb(46, 43, 43) 0.1em 0.1em 0.2em;
346}
347.ui-state-active a,
348.ui-state-active a:link{
349 color: #ffffff !important;
350 background-color: #105E9E !important;
351 text-shadow: rgb(46, 43, 43) 0.1em 0.1em 0.2em;
352 font-weight: normal;
353}
Scott Baker5e74a262014-03-27 09:21:16 -0700354
Scott Baker624a0a02014-11-05 16:21:44 -0800355
Scott Baker771819b2014-03-19 22:10:17 -0700356.alignCenter {
357 text-align: center !important;
358 align: center !important;
359}
360table.dataTable tr.odd {
361background-color: white !important;
362}
363table.dataTable tr.odd td.sorting_1 {
364background-color: white !important;
365}
366table.dataTable tr.even td.sorting_1 {
367background-color: white !important;
368}
369table.dataTable thead th div.DataTables_sort_wrapper {
370 font-weight: bold;
371}
Tony Mack6a782f92015-09-13 22:50:39 +0000372.dashboard-hpc-instance .ui-widget-header, .dashboard-hpc-instance .ui-dialog-title, .dashboard-hpc-instance .ui-dialog-titlebar{
Scott Baker771819b2014-03-19 22:10:17 -0700373}
374.ui-widget-overlay {
375 background: black !important;
376}
377.ui-corner-all {
378border-bottom-left-radius: 0px !important;
379border-bottom-right-radius: 0px !important;
380}
381
382#suit-center {
Scott Baker5e74a262014-03-27 09:21:16 -0700383 /* min-width: 977px !important; */
384}
385#openCloudTopPage {
386 margin-top: -25px;
387 margin-right: -90;
388 float: right;
Scott Baker771819b2014-03-19 22:10:17 -0700389}
390#minDashboard {
Scott Baker5e74a262014-03-27 09:21:16 -0700391 /*min-width:625px; */
Scott Baker771819b2014-03-19 22:10:17 -0700392 display:inline;
393 float: right;
Scott Baker5e74a262014-03-27 09:21:16 -0700394 border: 2px darkGrey;
Scott Baker771819b2014-03-19 22:10:17 -0700395}
Scott Baker5feb27e2015-05-11 16:37:26 -0700396.ui-state-default #hometabs, .ui-widget-content .ui-state-default #hometabs, .ui-widget-header .ui-state-default {
Scott Baker771819b2014-03-19 22:10:17 -0700397background: none !important;
398border-top: 0px !important;
399border-left: 0px !important;
400border-right: 0px !important;
401}
402.ui-widget-header {
403background: none !important;
404border-top: 0px !important;
405border-left: 0px !important;
406border-right: 0px !important;
407}
408#suit_form_tabs {
Scott Baker5e74a262014-03-27 09:21:16 -0700409/*border-bottom: 1px solid #B5D1EA;*/
410border-bottom: 1px solid #105E9E !important;
411border-bottom-width: 5px !important;
Scott Baker771819b2014-03-19 22:10:17 -0700412border-bottom-style: solid;
Scott Baker5e74a262014-03-27 09:21:16 -0700413/*border-bottom-color: rgb(181, 209, 234);*/
414border-bottom-color: #448CCA;
Scott Baker771819b2014-03-19 22:10:17 -0700415color:#105E9E;
416}
Scott Baker771819b2014-03-19 22:10:17 -0700417.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
418color: #105E9E ;
419}
Scott Baker5e74a262014-03-27 09:21:16 -0700420.save-box {
421 background-color: #ffffff;
422 margin: 2px;
423}
424.save-box .btn-info {
425 font-size: 14px;
426 padding: 10px 20px 10px 20px;
427}
428.btn-success {
429 font-size: 12px;
430 font-weight: normal;
431 padding: 5px 10px 5px 10px;
432}
433.btn-success, .save-box .btn-info {
434 background: #27AE5F;
435 background-image: -webkit-linear-gradient(top, #27AE5F, #27ae60);
436 background-image: -moz-linear-gradient(top, #27AE5F, #27ae60);
437 background-image: -ms-linear-gradient(top, #27AE5F, #27ae60);
438 background-image: -o-linear-gradient(top, #27AE5F, #27ae60);
439 background-image: linear-gradient(to bottom, #27AE5F, #27ae60);
440 -webkit-border-radius: 5;
441 -moz-border-radius: 5;
442 border-radius: 5px;
443 text-shadow: 1px 1px 3px #666666;
444 font-family: Arial;
445 color: #ffffff;
446 text-decoration: none;
447 letter-spacing: 1px;
448}
449
450.btn-success:hover, .save-box .btn-info:hover {
451 background: #2ecc71;
452 text-decoration: none;
453}
454
455
Scott Baker771819b2014-03-19 22:10:17 -0700456
Siobhan Tullybfd11dc2013-09-03 12:59:24 -0400457.required:after {color: red ! important; font-size: 18px }
458#.btn-success {color:black}
Siobhan Tullyce652d02013-10-08 21:52:35 -0400459#suit-center {
460padding: 20px;
461width: 100%;
Matteo Scandolo9a607262015-11-10 17:13:04 +0100462/*min-width:650px;*/
Siobhan Tullyce652d02013-10-08 21:52:35 -0400463}
464.inner-two-columns .inner-center-column .tab-content {
Scott Baker5e74a262014-03-27 09:21:16 -0700465overflow-x: auto;
Siobhan Tullyce652d02013-10-08 21:52:35 -0400466margin-bottom: 15px;
Scott Baker5e74a262014-03-27 09:21:16 -0700467/*min-width: auto;*/
468width:100%;
Siobhan Tullyce652d02013-10-08 21:52:35 -0400469}
470.inner-two-columns .inner-center-column {
471#margin-right: 200px;
472#background-color: rgb(158, 163, 159);
473}
474label {
475display: block;
476font-weight: bold;
477margin-bottom: 5px;
478}
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500479
Scott Baker5e74a262014-03-27 09:21:16 -0700480/*For changing background color of suit center*/
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500481#suit-center {
482background-color: #ffffff;
483}
484
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500485
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500486
487
488.nav-tabs-suit li{
Scott Baker5e74a262014-03-27 09:21:16 -0700489/*background-color: #CDE7FF;*/
490background-color: #FFFFFF;
491border-top-left-radius: 3px;
492border-top-right-radius: 3px;
493border-bottom-left-radius: 0px;
494border-bottom-right-radius: 0px;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500495}
496
497.nav-tabs-suit li a {
Scott Baker5e74a262014-03-27 09:21:16 -0700498background-color:
499/*background-color: #CDE7FF;*/
500font-weight: normal;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500501color: #105E9E;
Scott Baker5e74a262014-03-27 09:21:16 -0700502/*border-radius: 3px;*/
503border-top-left-radius: 3px;
504border-top-right-radius: 3px;
505border-bottom-left-radius: 0px;
506border-bottom-right-radius: 0px;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500507border: none;
508box-shadow: none;
509}
Scott Baker5e74a262014-03-27 09:21:16 -0700510
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500511.nav-tabs-suit li.active{
512/*Changed on Dec 11*/
Scott Baker5e74a262014-03-27 09:21:16 -0700513/*background-color: #448CCA;*/
514 background-position: 50% 100%;
515background-image:url('down_arrow.png');
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500516}
517
518.nav-tabs-suit li.hover{
519/*Changed on Dec 11*/
Scott Baker5e74a262014-03-27 09:21:16 -0700520/*background-color: #448CCA;*/
521color:#ffffff;
522/*font-size: 1.2em;*/
523font-weight: bold;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500524}
525
526.nav-tabs-suit li.active a {
Scott Baker5e74a262014-03-27 09:21:16 -0700527background-color: #ffffff;
528/*background-color: #448CCA;*/
529background-color: #105E9E;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500530color:#ffffff;
Scott Baker5e74a262014-03-27 09:21:16 -0700531font-weight:normal;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500532padding-top:10px;
533text-decoration:none;
534}
535
536.nav-tabs-suit li.active a:after{ /*arrow added to downarrowdiv DIV*/
537width: 0;
538height: 0;
539border-left: 5px solid transparent;
540border-right: 5px solid transparent;
541border-top: 5px solid #2f2f2f;
542font-size: 0;
543line-height: 0;
544}
545
Matteo Scandolo05460b72015-12-07 14:05:04 -0800546.nav-tabs-suit li.active a:hover,
547.nav-tabs-suit li a:hover{
548 background-color: #105E9E;
549 /*background-color: #515151;*/
550 font-weight:normal;
551 /*font-size: 1.2em;*/
552 color:#ffffff;
553 /*padding-top:10px;
554 text-decoration:none;*/
555}
556
557.nav-tabs>.active>a{
558 border: none;
559}
560
561.nav-tabs-suit li a{
562 font-weight: normal;
563}
564
565.nav-tabs-suit li a:hover{
566 border: none;
567 color: #ffffff;
568 padding-top:10px;
Matteo Scandoloac812bd2015-12-07 17:32:39 -0800569 /*border: 1px solid;*/
Matteo Scandolo05460b72015-12-07 14:05:04 -0800570 /*letter-spacing: 1px;*/
Matteo Scandoloac812bd2015-12-07 17:32:39 -0800571 /*text-shadow: rgb(46, 43, 43) 0.1em 0.1em 0.2em;*/
Matteo Scandolo05460b72015-12-07 14:05:04 -0800572}
573
574.nav-tabs-suit li.active a:hover{
575 /*border: none;*/
576}
577
578.nav-tabs-suit > li.active > a:focus {
579 background-color: #105E9E;
580 font-weight: normal;
Scott Baker5e74a262014-03-27 09:21:16 -0700581}
582
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500583.breadcrumb li a {
Scott Baker5e74a262014-03-27 09:21:16 -0700584/*font-weight:bold;*/
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500585}
586
587.nav-tabs {
Scott Baker5e74a262014-03-27 09:21:16 -0700588/*
589border-bottom: 1px solid #B5D1EA;*/
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500590}
591
592.nav-tabs>li {
593margin-bottom: 0px;
594}
595
596/*.icon-home {
597background-image: url('home.png');
598background-repeat: no-repeat;
599background-position: 85%;
600}*/
601
602/*Changed Dec11*/
603
604/*
605.icon-home {
606background-image: url('home.png');
607background-repeat: no-repeat;
608background-position: 40%;
609width: 25px;
610height: 25px;
611vertical-align: middle;
612}
613*/
614
615
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500616.left-nav>ul>li.active>a:after {
617content: none;
618
619}
620
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500621/**
622* login page
623*/
624
625
626/*.login #wrap {
627background-color: #ffffff;
628}*/
629
630.login #content-main {
Scott Baker5e74a262014-03-27 09:21:16 -0700631width: 280px !important;
632min-width: 180px;
633height: 265px;
634 -webkit-border-radius: 5;
635 -moz-border-radius: 5;
636 border-radius: 5px;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500637/*background: #EBF0F2;*/
638background: rgba(255,255,255,0.85);
639/*background: rgba(235,240,242,0.6);*/
Scott Baker5e74a262014-03-27 09:21:16 -0700640overflow: visible !important;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500641}
642
643.login #content-main h1 {
644/*background: #EBF0F2;*/
Matteo Scandolo93a1b5a2015-10-26 13:57:04 +0100645/*background: url("open-cloud-login-themed-light.png") no-repeat scroll 40% center / 89% auto rgba(235, 240, 242, 0);*/
646background: url("cord_logo_3.png") no-repeat scroll 40% center / 89% auto rgba(235, 240, 242, 0);
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500647/*background-position: 40%;*/
648height: 55px;
649background-repeat: no-repeat;
650font-size: 0px;
651padding-top: 70px;
652}
653.login #content-main h1 i {
654display:none;
655}
656
657.login #content-main h1 img{
658padding-left: 8px;
659}
660
661.login #content-main .control-group .control-label{
662display:none;
663}
664
Scott Baker6985cd52014-08-05 09:51:40 -0700665.login #content-main form input[type=text], .requestDialog.ui-widget input{
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500666width: 94%;
667padding:4px 6px;
668border-radius: 0px;
669height: 30px;
Scott Baker6985cd52014-08-05 09:51:40 -0700670background-color: rgb(250, 255, 189);
671/*background-image: url('name.png');*/
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500672background-repeat: no-repeat;
673background-position: 95%;
674font-size: 12px;
675}
676
677.login #content-main form input[type=password] {
678 width: 94%;
679padding:4px 6px;
680font-size: 12px;
681border-radius: 0px;
682height: 30px;
683background-color: #E5E5E5;
684background-image: url('password.png');
685background-repeat: no-repeat;
686background-position: 95%;
687}
688
689.login #content-main .submit-row{
690background: #EBF0F215px;
691background: rgba(235,240,242,0.0);
692border-top:none;
693padding-top:0px;
694box-shadow: none;
695}
696
697.login #content-main .submit-row .btn-info {
698background-color : #448CCA;
699background-image: none;
700height: 40px;
701border-radius: 0px;
702width: 100%;
703margin-bottom: 4px;
704}
705#forgot_pwd{
706font-size: 11px;
707font-style: normal;
708text-decoration: none;
709}
710
711#create_acct{
712font-size: 11px;
713font-style: normal;
714text-decoration: none;
715padding-left: 45px;
716}
717
718/*Dec 11 2013*/
719
720.nav-tabs-suit li.active a{
Scott Baker5e74a262014-03-27 09:21:16 -0700721letter-spacing: 1px;
722text-shadow: rgb(46, 43, 43) 0.1em 0.1em 0.2em;
723/*text-shadow: none;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500724-webkit-box-shadow: none;
725-moz-box-shadow: none;
726box-shadow: none;
Scott Baker5e74a262014-03-27 09:21:16 -0700727*/
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500728}
729
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500730/*.nav-tabs-suit li.active {*/
731 /*background: transparent url('home.png') no-repeat scroll center bottom;*/
732 /*border-left: 5px solid transparent;
733border-right: 5px solid transparent;
734border-top: 5px solid #2f2f2f;
735font-size: 0;
736line-height: 0;
737width: 0;;
738height: 0;
739 margin: 0;
740}*/
741
742.login {
Matteo Scandoloc442e102015-11-11 11:45:10 +0100743 background-image: url('bg.jpg');
744 background-size: cover;
745 background-position: center;
746 background-repeat: no-repeat;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500747}
748
749
750.login #content-main {
751 float: none;
752 height: 330px;
753 margin: 100px auto 0;
754 width: 265px;
755}
756
Scott Baker5e74a262014-03-27 09:21:16 -0700757/** Leave room for scroll bar now that contents can be appropriately scrolled **/
758.form-horizontal .inline-group .add-row {
759 margin: -1px -1px 15px 0px;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500760}
761
Scott Baker5e74a262014-03-27 09:21:16 -0700762/** Setting overflow and 1kpx to deal with inlines/forms overlapping on
763 browser resizes **/
764#content-main {
765 overflow-x:auto;
Matteo Scandolo9a607262015-11-10 17:13:04 +0100766 /*min-width: 1000px;*/
Scott Baker5e74a262014-03-27 09:21:16 -0700767}
768
769.tab-content tab-content-main {
770 overflow-x: auto !important;
771}
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500772
773#wrap{
774background:none;
775}
776
Scott Baker5e74a262014-03-27 09:21:16 -0700777.noclearfix {
778 display:block; clear:left; width:0px; height:0px;
779}
780
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500781body{
782background-color:#ffffff;
783}
784
785.suit-column{
786background-color:#ffffff;
787}
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500788/*Added on 13th*/
789
790/*.input-icon {
791margin-right: 30px;
792}
793
794.icon-search{
795
796margin-left: -165px;
797}*/
798
799.login #content-main form {
800margin: 5px 15px 0;
801}
802
803.login {
804height: 84.5%;
805}
806
807
808.login #wrap {
809 background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
Matteo Scandoloe34392f2015-11-10 17:29:57 +0100810 overflow: hidden;
Matteo Scandolof0054882015-11-10 19:31:35 +0100811 padding: 0f;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500812}
813#wrap {
814 background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
815}
816#wrap {
Matteo Scandolo9a607262015-11-10 17:13:04 +0100817 padding-bottom: 60px;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500818}
819
820.forgotLink {
821 width: 45%;
822 text-align: left;
823 float: left;
824}
825
Scott Baker6985cd52014-08-05 09:51:40 -0700826#request-account-form{
827 display:none;
828}
829
830#requestAccountLink {
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500831 width: 55%;
832 text-align: right;
833 float: left;
Scott Baker6985cd52014-08-05 09:51:40 -0700834 padding-left: 21%;
835 cursor: pointer;
836 color: #448CCA;
837 text-decoration: underline;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500838}
839
840.login .btn-info {
841 color: #FFF;
842}
843
844.nav-tabs > .active > a, .nav-tabs > .active > a:hover, .nav-tabs > .active > a:focus {
Scott Baker5e74a262014-03-27 09:21:16 -0700845 /*background-color: #448CCA;*/
846 background-color: #105E9E;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500847 color: #FFF;
848 border: none;
849}
850
851/*Added by Beena for adding the three components in dashboard*/
852.breadcrumb{
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500853 display:inline-block;
854 background-color: #fff;
855
856}
857
858.nodetextbox{
Scott Baker5e74a262014-03-27 09:21:16 -0700859 /*background-color: #ededed;*/
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500860 line-height: 25px;
861 width: 150px;
862 text-align: center;
863 font-weight: bold;
Scott Baker5e74a262014-03-27 09:21:16 -0700864 margin-left:0px;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500865 display:inline-block;
866 border:none;
867 font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
Scott Baker5e74a262014-03-27 09:21:16 -0700868 font-size: 8px;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500869}
870
871.nodelabel{
Scott Baker5e74a262014-03-27 09:21:16 -0700872width: 20px;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500873display: inline-block;
874border-radius: 0px;
875border:1px solid #000;
Scott Baker5e74a262014-03-27 09:21:16 -0700876/*line-height: 23px;*/
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500877text-align: center;
Scott Baker5e74a262014-03-27 09:21:16 -0700878font-weight: normal;
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500879}
880
Scott Baker5e74a262014-03-27 09:21:16 -0700881#user-tools {
882 font-weight: bold;
883}
Siobhan Tullycf04fb62014-01-11 11:25:57 -0500884.header-content .header-column {
885 display: none;
886}
887.header .input-icon {
888 background-image: url("Search.png");
889 background-repeat: no-repeat;
890background-position:left center;
891opacity:1;
892 background-size: 100%;
893 vertical-align:middle;
894 margin-right: -30px;
895 /*margin-top: 5px;*/
896 position: relative;
897 height: 22px;
898 width: 22px;
899}
900
901.header .icon-search {
902 /*background-image: url("search.png") !important;
903 background-repeat: no-repeat !important;
904 background-size: 120% auto !important;
905 background-position: 0;*/
906}
907
Siobhan Tullye18b3442014-02-23 14:23:34 -0500908#dashboardHPC {
909 padding-bottom: 10px;
910}
911.summary-attr {
912 padding-right: 20px;
913}
914.summary-attr-util {
915 padding-right: 20px;
916 color: green;
917}
918.SiteDetail {
919color: darkBlue;
920 font-size: 1.5em;
921}
Tony Mack6a782f92015-09-13 22:50:39 +0000922#addInstances {
Siobhan Tullye18b3442014-02-23 14:23:34 -0500923 color: green;
924text-decoration: underline;
925 padding-right: 20px;
926}
Tony Mack6a782f92015-09-13 22:50:39 +0000927#remInstances {
Siobhan Tullye18b3442014-02-23 14:23:34 -0500928 color: red;
929 text-decoration: underline;
930}
931#map-us {
932 padding-top: 10px;
933 width: 700px;
934 height: 400px;
935}
Sapan Bhatiafbac39b2014-02-27 13:12:32 -0500936
Scott Baker5e74a262014-03-27 09:21:16 -0700937.minidashbutton {
938 -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
939 -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
940 box-shadow:inset 0px 1px 0px 0px #ffffff;
941 background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #f6f6f6));
942 background:-moz-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
943 background:-webkit-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
944 background:-o-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
945 background:-ms-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
946 background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
947 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0);
948 background-color:#ffffff;
949 -moz-border-radius:6px;
950 -webkit-border-radius:6px;
951 border-radius:6px;
952 border:1px solid #dcdcdc;
953 display:inline-block;
954 cursor:pointer;
955 color:#666666;
956 font-family:arial;
957 font-size:15px;
958 font-weight:bold;
959 padding:6px 24px;
960 text-decoration:none;
961 text-shadow:0px 1px 0px #ffffff;
962}
963.minidashbutton:hover {
964 background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f6f6f6), color-stop(1, #ffffff));
965 background:-moz-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
966 background:-webkit-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
967 background:-o-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
968 background:-ms-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
969 background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
970 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#ffffff',GradientType=0);
971 background-color:#f6f6f6;
972}
Sapan Bhatiafbac39b2014-02-27 13:12:32 -0500973
Scott Baker5e74a262014-03-27 09:21:16 -0700974.newMiniDashboard {
975 border: 1px solid green;
976 width: auto;
977}
Sapan Bhatiafbac39b2014-02-27 13:12:32 -0500978
Scott Baker5e74a262014-03-27 09:21:16 -0700979.endDashPair {
980 clear: left;
981}
982.miniDashPair {
983 float: left;
984 width: auto;
985 margin-left: 20px;
986}
Sapan Bhatiafbac39b2014-02-27 13:12:32 -0500987
Scott Baker5e74a262014-03-27 09:21:16 -0700988.miniDashPair label {
989 text-align: center;
990}
Sapan Bhatiafbac39b2014-02-27 13:12:32 -0500991/* Charts CSS */
992p.numeral
993{
994 font-size:32pt;
995 color:#ffffff;
996 opacity: 0.7;
997 font-family:Helvetica Neue;
998 font-weight:100;
999 text-align:center;
1000 line-height:75%;
1001}
1002
1003.helper-text
1004{
1005 border: 1px solid #fff;
1006 padding: 7px;
1007 border-radius: 18px;
1008 font-size:13pt;
1009 color:#ffffff;
1010 opacity: 0.7;
1011 font-family:Helvetica Neue;
1012 font-weight:200;
1013 text-align:center;
1014 line-height:100%;
1015}
1016p.osobject
1017{
1018 font-size:12pt;
1019 color:#ffffff;
1020 opacity: 0.7;
1021 font-family:Helvetica Neue;
1022 font-weight:200;
1023 text-align:center;
1024 line-height:100%;
1025}
1026
1027p.heading
1028{
Scott Baker5e74a262014-03-27 09:21:16 -07001029 font-size:20px;
1030 letter-spacing: 1px;
1031 color: black;
1032 font-family:Arial;
1033 font-weight:bold;
Sapan Bhatiafbac39b2014-02-27 13:12:32 -05001034 text-align:center;
1035}
1036
1037/*p.heading
1038{
1039 font-size:32pt;
1040 color:#ffffff;
1041 opacity: 0.7;
1042 font-family:Helvetica Neue;
1043 font-weight:200;
1044 text-align:center;
1045}*/
1046
1047div.graph
1048{
1049 height:340px;
1050}
1051
1052div.numeral
1053{
1054 height:120px;
1055}
1056
1057div.heading
1058{
1059 height:10px;
1060}
1061
1062div.padding
1063{
1064 height:20px;
1065}
1066
1067div.chartContainer
1068{
Scott Baker5e74a262014-03-27 09:21:16 -07001069 /*background-image:url('chartsBg.jpg');*/
Sapan Bhatiafbac39b2014-02-27 13:12:32 -05001070 width:527px;
1071 height:400px;
1072 border:1px;
1073}
1074
1075/* D3 */
1076
1077.axis path,
1078.axis line {
1079 fill: none;
1080 stroke: #ffffff;
1081 opacity: 0.7;
1082 shape-rendering: crispEdges;
1083}
1084
1085
1086.x.axis path {
1087 display: none;
1088}
1089
1090.x.axis text {
1091 fill: white;
1092 opacity: 0.5;
1093}
1094
1095.y.axis text {
1096 opacity: 0.5;
1097 fill: white;
1098}
1099
1100.y.axis text.legend {
1101 opacity: 1.0;
1102 fill: white;
1103 font-size:8pt;
1104}
1105
1106.line {
1107 fill: none;
1108 stroke: white;
1109 stroke-width: 3px;
1110 opacity: 0.6;
1111}
1112
1113
Scott Baker5e74a262014-03-27 09:21:16 -07001114/****** Added in so that we can have a loader show as charts get ready to render ***/
1115.loading {
1116 //background-color: orange;
1117 background-image: url(spinner.gif) no-repeat center middle;
1118 text-align: center;
1119 font-size: 20px;
1120 height: 100%
1121/* width: auto;*/
1122 float: left;
1123 padding: 10px;
1124}
Sapan Bhatiafbac39b2014-02-27 13:12:32 -05001125/* Charts CSS */
Scott Baker5e74a262014-03-27 09:21:16 -07001126
1127#tabs-4 {
1128 margin: 40px;
1129 font-size: 24px;
1130 font-weight: bold;
1131}
Scott Baker537d8232014-04-08 23:40:56 -07001132
1133.tenant-row{
Scott Baker26d69d72014-04-22 13:49:36 -07001134 padding-bottom: 0.7%;
1135}
1136
1137/***********TENANT VIEW*************/
1138
1139#image-dropdown,#slice-image-value,#adv-slice-image-value{
1140 margin-left: 5%;
1141}
1142
Scott Baker6985cd52014-08-05 09:51:40 -07001143
1144#adv-slice-image-value{
1145margin-right: 0.5%;
1146}
1147
1148#adv-network-value {
1149margin-right: 0.3%;
1150}
1151
Scott Baker168b7412014-05-16 14:25:41 -07001152#network-dropdown,#adv-network-dropdown,#adv-network-value{
Scott Baker26d69d72014-04-22 13:49:36 -07001153 margin-left: 3.7%;
1154}
1155
1156#service-level-dropdown,#service-level-value,#adv-service-level-dropdown,#adv-service-level-value{
1157 margin-left: 0.2% !important;
1158}
1159
1160#slice-name-value,#adv-slice-name-value{
1161 margin-left: 2%;
1162}
1163#adv-dataset-dropdown{
Scott Baker6985cd52014-08-05 09:51:40 -07001164margin-left: 3.7%;
Scott Baker26d69d72014-04-22 13:49:36 -07001165}
Tony Mack6a782f92015-09-13 22:50:39 +00001166#advanced-tenant,#basic-tenant,#instance-btn,#save-btn{
Scott Baker26d69d72014-04-22 13:49:36 -07001167 float:right;
1168}
Scott Baker6985cd52014-08-05 09:51:40 -07001169 #delete-slice-btn,#download-details,#add-user-btn{
Scott Baker26d69d72014-04-22 13:49:36 -07001170 margin-left:1%;
1171}
1172
Tony Mack6a782f92015-09-13 22:50:39 +00001173#instance-btn,#save-btn,#create-slice-btn,#delete-slice-btn,#add-user-btn,#download-details{
Scott Baker26d69d72014-04-22 13:49:36 -07001174 margin-top:1%;
1175}
1176
1177.tenantDialog.ui-widget input{
1178 border-radius: 0px !important;
Scott Baker4b0cedd2014-04-22 21:01:21 -07001179 height: 12px !important;
1180 width: 180px !important;
1181 margin-right: 10% !important;
1182 float: right;
Scott Baker26d69d72014-04-22 13:49:36 -07001183}
1184
1185.tenantDialog .ui-dialog-buttonset .ui-button{
1186border-radius: 0 !important;
1187background-color: grey !important;
1188font-weight: bold !important;
1189font-size: 0.9em; !important
1190}
1191
1192.tenantDialog .ui-dialog-titlebar{
1193border-radius: 0 !important;
1194background-color: grey !important;
1195}
1196
1197.create-slice-row{
Scott Baker4b0cedd2014-04-22 21:01:21 -07001198 margin-bottom: 4%;
1199 clear: both;
1200 height: 25px;
Scott Baker26d69d72014-04-22 13:49:36 -07001201}
1202
1203.create-slice-row label, .tenantDialog label{
1204 margin-right:1%;
1205 float:left;
1206}
1207
1208.create-slice-row select{
1209 height:24px;
1210 width: 196px;
1211 font-size: 0.9em !important;
1212}
1213
1214.tenant-create-slice{
1215 float:right;
1216 margin-right: 10% !important;
1217}
1218
1219#delete-slice{
1220float: right;
1221}
1222
1223#tooltip,#adv-tooltip,#basic-tooltip{
1224font-size:0.7em;
1225color:red;
1226display:none;
1227}
1228
1229#tenantSliceDataWrapper {
1230 padding: 1% 0;
1231}
1232
1233#advancedTenantSliceDataWrapper .help-inline{
1234 font-size: 11px;
1235 color: #999;
1236 padding-bottom: 1%;
Scott Baker537d8232014-04-08 23:40:56 -07001237}
Scott Baker4b0cedd2014-04-22 21:01:21 -07001238
1239.create-slice-row label{
1240 clear:both;
1241 margin-right: 1%;
1242}
Scott Baker520b8df2014-04-22 22:35:52 -07001243
Tony Mack6a782f92015-09-13 22:50:39 +00001244#advNumOfInstances{
Scott Baker520b8df2014-04-22 22:35:52 -07001245 margin-right: 1% !important;
1246}
Scott Baker168b7412014-05-16 14:25:41 -07001247
1248#private-vol-checkbox{
1249margin: 0 0 1% 1%;
1250}
1251
1252.public-key-warning{
1253text-align: center;
1254display:none;
1255}
1256
1257#private-vol{
1258margin-right: 15% !important;
Scott Baker6985cd52014-08-05 09:51:40 -07001259}
1260.customize_row {
1261 display: table;
1262}
1263.customize_column {
1264 display: table-cell;
1265 padding: 10px;
1266}
1267
1268.request-form-row{
1269padding:1% 8%;
1270}
1271
1272.requestDialog{
1273background-color: white;
1274border-radius: 8px;
1275width: 30% !important;
1276height: 40% !important;
1277margin-top: -16%;
1278top: -103.703125px !important;
1279}
1280
1281.request-form-row label{
1282 float: left;
1283}
1284
1285
1286.requestDialog .ui-dialog-buttonset .ui-button{
1287border-radius: 0 !important;
1288background-color: grey !important;
1289font-weight: bold !important;
1290font-size: 0.9em; !important
1291}
1292
1293.requestDialog .ui-dialog-titlebar-close{
1294float:right;
1295}
1296
1297#request-signup{
1298height: 40px !important;
1299margin: 0 14%;
1300float: left;
1301background-color: #448CCA;
1302background-image: none;
1303width: 70% !important;
1304}
1305
1306.requestDialog .ui-dialog-titlebar{
1307border-radius: 0 !important;
1308height: 25px;
1309padding-top: 2%;
1310}
1311
1312.requestDialog #ui-id-1{
1313padding-left: 28%;
1314font-size: medium;
1315}
1316
1317#request-site-name{
1318 width: 98%;
1319}
Matteo Scandolo95d128c2015-12-07 13:35:29 -08001320
Matteo Scandolof5064272015-12-07 14:53:11 -08001321/* SUIT CHANGES */
1322.submit-row.fixed {
1323 bottom: 60px;
1324}
1325
1326.submit-row a.deletelink {
1327 color: #fff;
1328 background-color: #d9534f;
1329 border-color: #d43f3a;
1330
1331 display: inline-block;
1332 margin-bottom: 0;
1333 font-weight: normal;
1334 text-align: center;
1335 vertical-align: middle;
1336 -ms-touch-action: manipulation;
1337 touch-action: manipulation;
1338 cursor: pointer;
1339 background-image: none;
1340 border: 1px solid transparent;
1341 white-space: nowrap;
1342 padding: 5px 12px;
1343 font-size: 12px;
1344 line-height: 1.42857143;
1345 border-radius: 4px;
1346 -webkit-user-select: none;
1347 -moz-user-select: none;
1348 -ms-user-select: none;
1349 user-select: none;
1350}
Matteo Scandolo95d128c2015-12-07 13:35:29 -08001351
Matteo Scandoloac812bd2015-12-07 17:32:39 -08001352/* MODAL */
1353.ui-dialog{
1354 z-index: 4000 !important;
1355}
1356
1357button.ui-dialog-titlebar-close{
1358 font-family: 'Glyphicons Halflings' !important;
1359 display: inline-block;
1360}
1361
1362button.ui-dialog-titlebar-close:after {
1363 content: "\e014";
1364}
Matteo Scandolo95d128c2015-12-07 13:35:29 -08001365/* VCPe ADMIN FIX */
1366/*form#vcpeservice_form ul li {
1367 display: inline-block;
1368 background: red;
1369 margin-top: 10px;
1370 width: auto;
1371 padding: 10px;
1372 border-radius: 5px;
teone7ece6822015-12-09 13:10:20 -08001373}