source: products/quintagroup.analytics/branches/treemap/quintagroup/analytics/browser/resources/treemap.css @ 3372

Last change on this file since 3372 was 3372, checked in by potar, 12 years ago

Added new branch

File size: 3.9 KB
Line 
1.horizontal > div:first-child {
2    height: 100%;
3    border:0;
4    float:left;
5}
6
7.horizontal > div:first-child + div {
8    height: 100%;
9    border:0;
10    float:left;
11}
12
13.vertical > div:first-child {
14    width: 100%;
15    border:0;
16    float:left;
17}
18.vertical > div:first-child + div {
19    width: 100%;
20    border:0;
21    float:left;
22}
23.horizontal.prop10 > div:first-child {
24    width: 10%;
25    border:0;
26    float:left;
27}
28
29.horizontal.prop10 > div:first-child + div{
30    width: 90%;
31    border:0;
32    float:left;
33}
34
35.vertical.prop10 > div:first-child {
36    height: 10%;
37    border:0;
38    float:left;
39}
40
41.vertical.prop10 > div:first-child + div {
42    height: 90%;
43    border:0;
44    float:left;
45}
46
47.horizontal.prop20 > div:first-child {
48    width: 20%;
49    border:0;
50    float:left;
51}
52
53.horizontal.prop20 > div:first-child + div{
54    width: 80%;
55    border:0;
56    float:left;
57}
58
59.vertical.prop20 > div:first-child {
60    height: 20%;
61    border:0;
62    float:left;
63}
64
65.vertical.prop20 > div:first-child + div {
66    height: 80%;
67    border:0;
68    float:left;
69}
70
71.horizontal.prop30 > div:first-child {
72    width: 30%;
73    border:0;
74    float:left;
75}
76
77.horizontal.prop30 > div:first-child + div{
78    width: 70%;
79    border:0;
80    float:left;
81}
82
83.vertical.prop30 > div:first-child {
84    height: 30%;
85    border:0;
86    float:left;
87}
88
89.vertical.prop30 > div:first-child + div {
90    height: 70%;
91    border:0;
92    float:left;
93}
94
95.horizontal.prop40 > div:first-child {
96    width: 40%;
97    border:0;
98    float:left;
99}
100
101.horizontal.prop40 > div:first-child + div{
102    width: 60%;
103    border:0;
104    float:left;
105}
106
107.vertical.prop40 > div:first-child {
108    height: 40%;
109    border:0;
110    float:left;
111}
112
113.vertical.prop40 > div:first-child + div {
114    height: 60%;
115    border:0;
116    float:left;
117}
118
119.horizontal.prop50 > div:first-child {
120    width: 50%;
121    border:0;
122    float:left;
123}
124
125.horizontal.prop50 > div:first-child + div{
126    width: 50%;
127    border:0;
128    float:left;
129}
130
131.vertical.prop50 > div:first-child {
132    height: 50%;
133    border:0;
134    float:left;
135}
136
137.vertical.prop50 > div:first-child + div {
138    height: 50%;
139    border:0;
140    float:left;
141}
142
143.horizontal.prop60 > div:first-child {
144    width: 60%;
145    border:0;
146    float:left;
147}
148
149.horizontal.prop60 > div:first-child + div{
150    width: 40%;
151    border:0;
152    float:left;
153}
154
155.vertical.prop60 > div:first-child {
156    height: 60%;
157    border:0;
158    float:left;
159}
160
161.vertical.prop60 > div:first-child + div {
162    height: 40%;
163    border:0;
164    float:left;
165}
166
167.horizontal.prop70 > div:first-child {
168    width: 70%;
169    border:0;
170    float:left;
171}
172
173.horizontal.prop70 > div:first-child + div{
174    width: 30%;
175    border:0;
176    float:left;
177}
178
179.vertical.prop70 > div:first-child {
180    height: 70%;
181    border:0;
182    float:left;
183}
184
185.vertical.prop70 > div:first-child + div {
186    height: 30%;
187    border:0;
188    float:left;
189}
190
191.horizontal.prop80 > div:first-child {
192    width: 80%;
193    border:0;
194    float:left;
195}
196
197.horizontal.prop80 > div:first-child + div{
198    width: 20%;
199    border:0;
200    float:left;
201}
202
203.vertical.prop80 > div:first-child {
204    height: 80%;
205    border:0;
206    float:left;
207}
208
209.vertical.prop80 > div:first-child + div {
210    height: 20%;
211    border:0;
212    float:left;
213}
214
215.horizontal.prop90 > div:first-child {
216    width: 90%;
217    border:0;
218    float:left;
219}
220
221.horizontal.prop90 > div:first-child + div{
222    width: 10%;
223    border:0;
224    float:left;
225}
226
227.vertical.prop90 > div:first-child {
228    height: 90%;
229    border:0;
230    float:left;
231}
232
233.vertical.prop90 > div:first-child + div {
234    height: 10%;
235    border:0;
236    float:left;
237}
238
239.horizontal.prop100 > div:first-child {
240    width: 100%;
241    border:0;
242    float:left;
243}
244
245.horizontal.prop100 > div:first-child + div{
246    width: 0%;
247    border:0;
248    float:left;
249}
250
251.vertical.prop100 > div:first-child {
252    height: 100%;
253    border:0;
254    float:left;
255}
256
257.vertical.prop100 > div:first-child + div {
258    height: 0%;
259    border:0;
260    float:left;
261}
262
Note: See TracBrowser for help on using the repository browser.