add gridftp view
[qcg-portal.git] / qcg / static / qcg / main.css
1 html {
2   /* needed to push down footer */
3   position: relative;
4   min-height: 100%;
5 }
6
7 body {
8   /* space for footer */
9   margin-bottom: 70px;
10 }
11
12 footer.navbar-fixed-bottom {
13   position: absolute;
14 }
15
16 .page-header {
17     margin-top: 0;
18 }
19
20
21 /* new job view */
22
23 textarea {
24     resize: vertical;
25     min-height: 34px;
26 }
27
28 .modal-body > *:last-child {
29     margin-bottom: 0;
30 }
31
32 #env-controls .form-group {
33     display: inline-block;
34     margin: 0;
35     vertical-align: middle;
36 }
37
38 #env-controls > div {
39     margin-bottom: 7px;
40 }
41
42 #env-controls > div:last-of-type {
43     margin: 0;
44 }
45
46 #env-controls input[type="text"] {
47     width: 160px;
48 }
49
50 #add-env-form {
51     padding-top: 7px;
52 }
53
54 .timerange input {
55     display: inline-block;
56     width: 67%;
57     margin-right: 5px;
58 }
59
60 .timerange select {
61     display: inline-block;
62     width: 30%;
63     float: right;
64 }
65
66
67 /* GridFTP view */
68
69 #filex {
70     /* needed for positioning spinner */
71     position: relative;
72 }
73
74 #host-controls .change {
75     display: none;
76 }
77
78 #host-controls.editing .view {
79     display: none;
80 }
81
82 #host-controls.editing .change {
83     display: initial;
84 }
85
86 .path.breadcrumb > li + li::before {
87     content: "› ";
88 }
89
90 #spinner-overlay {
91     background: url('/static/filex/spinner.gif') white center 100px no-repeat;
92     opacity: 0.5;
93     position: absolute;
94     top: 0;
95     left: 0;
96     height: 100%;
97     width: 100%;
98     display: none;
99 }
100
101 .busy #spinner-overlay {
102     display: initial;
103 }