forget about manage.py collectstatic and come up with our own brew
[myslice.git] / plugins / querycode / querycode.css
1 body { font-family:Arial, Helvetica, Sans-Serif; font-size:0.8em;}
2
3 #report {
4 border-collapse:collapse;
5 width: 100%;
6 }
7 #report h4 { margin:0px; padding:0px;}
8 #report img { float:right;}
9 #report ul { margin:10px 0 10px 40px; padding:0px;}
10 #report th { background:#C7DDEE; color:#000; padding:7px 15px; text-align:left;}
11 #report td { background:#fff; color:#000; padding:7px 15px; }
12 #report tr.odd td { background:#D7DDE3; cursor:pointer; }
13 #report div.arrow { background:transparent url(images/arrows.png) no-repeat scroll 0px -16px; width:16px; height:16px; display:block;}
14 #report div.up { background-position:0px 0px;}
15
16 div.info{
17     position:relative; /*this is the key*/
18     float: right;
19     z-index:24;
20     background: url(images/tooltip.png) no-repeat;
21     //background-color:#ccc;
22     width: 16px;
23     height: 16px;
24     color:#000;
25     text-decoration:none}
26
27 div.info:hover{
28     z-index:25;
29     //background-color:#ff0
30 }
31
32 div.info span{display: none}
33
34 div.info:hover span{ /*the span will display just on :hover state*/
35     display:block;
36     position:absolute;
37     //top:1em;
38     left:-22em;
39     width: 20em;
40     font-size: 8pt;
41     border:1px solid #ccdddd;
42     background-color:#ddeeee;
43     color:#000;
44     text-align: left;
45     padding: 0em 0em 0em 1em;
46 }
47
48 div.method {
49     padding: 10px;
50     background-color: #fafafa;
51     border-top: solid 1px black;
52     border-left: solid 1px black;
53     border-right: solid 1px black;
54 }
55 div.ts {
56     padding: 10px;
57     background-color: #f5f5f5;
58     border-left: solid 1px black;
59     border-right: solid 1px black;
60 }
61 div.input {
62     padding: 10px;
63     background-color: #fafafa;
64     border-left: solid 1px black;
65     border-right: solid 1px black;
66 }
67 div.output {
68     padding: 10px;
69     background-color: #f5f5f5;
70     border-left: solid 1px black;
71     border-right: solid 1px black;
72     border-bottom: solid 1px black;
73 }
74
75 #viz {
76     padding: 10px;
77     background-color: #fafafa;
78     border: solid 1px black;
79     margin-bottom: 10px;
80 }
81
82 #colcfg {
83     padding: 10px;
84     background-color: #fafafa;
85     border: solid 1px black;
86     margin-bottom: 10px;
87 }
88
89 #results {
90     border-top: solid 1px black;
91     margin-top: 20px;
92     padding-top: 20px;
93 }
94
95 td.center {
96     background: #ffffff;
97 }
98
99 #boxes {
100     font-family: Arial, sans-serif;
101     list-style-type: none;
102     margin: 0px;
103     padding: 0px;
104     width: 100%;
105 }
106 #boxes li {
107     list-style-type: none;
108     cursor: move;
109     position: relative;
110     float: left;
111     margin: 2px 2px 0px 0px;
112     //width: 33px;
113     height: 33px;
114     border: 1px solid #e0e0e0;
115     text-align: center;
116     padding: 5px;
117     background-color: #fafafa;
118     -moz-border-radius: 5px;
119     border-radius: 5px;
120 }
121
122 table tr.even.row_selected td {
123     background-color: #B0BED9;
124 }
125
126 table tr.odd.row_selected td {
127     background-color: #9FAFD1;
128 }
129
130 #coltab tr {
131     margin: 0px;
132 }
133
134 #coltab td {
135     margin: 0px;
136     border-bottom: none; //1px solid #E9E9E9;
137     padding: 0px;
138 }
139
140 div.out{background-color:white; color:black}
141 div.in{background-color:#CAE8EA; color:#4f6b72}
142 div.selected{background-color:gray; color:black}
143 div.invisible{display:none}
144
145 div.clean{
146         border: 1px solid #850000;
147 }
148
149 .clean td, .clean th{
150         border: 2px solid #bbb;
151         background: #ddd;
152         padding: 5px 10px;
153         text-align: center;
154         border-radius: 2px;
155 }
156
157 .clean table{
158         margin: auto;
159         margin-top: 15px;
160         margin-bottom: 15px;
161 }
162
163 .clean caption{
164         font-weight: bold;
165
166 }
167
168 .gvChart,.clean{
169         border: 2px solid #850000;
170         border-radius: 5px;
171         -moz-border-radius: 10px;
172         width: 720px;
173
174         margin: auto;
175         margin-top: 20px;
176 }
177
178 pre{
179         background: #eee;
180         padding: 10px;
181         border-radius: 10px;
182         -moz-border-radius: 10px;
183         white-space: pre-wrap;
184 }
185