implement changes filter
[MojoFacets.git] / public / mojo_facets.css
1 .count {
2         color: #aaa;
3 }
4 .count:before {
5         content: "(";
6 }
7 .count:after {
8         content: ")";
9 }
10
11 label span.hint {
12         display: none;
13         position: absolute;
14         background: #fff;
15         color: #888;
16         z-index: 100;
17         padding: 3px;
18 }
19
20 label:hover span.hint {
21         display: block;
22 }
23
24
25 span.sort-by {
26         float: right;
27 }
28
29 /* index columns */
30 span.c {
31         background: #eee;
32         font-size: 70%;
33         padding: 0 0.5em;
34 }
35 span.f {
36         font-weight: bold;
37 }
38 span.h {
39         color: #666;
40 }
41
42 .admin {
43         background: #ffc;
44         padding: 0.25em;
45 }
46
47 .admin .active {
48         font-weight: bold;
49 }
50
51 .admin .changes {
52         float: right;
53 }
54
55 .debug {
56         color: #aaa;
57 }
58
59 .debug:hover {
60         color: #000;
61 }
62
63 li label:hover, td label:hover {
64         background: #ff8;
65 }       
66
67 td label {
68         white-space: nowrap;
69 }
70
71
72 div.col_opts {
73         font-size: 70%;
74 }
75
76 .chart {
77         float: right;
78         position: relative;
79         margin-top: 1em;
80 }
81
82 .labels-x,
83 .labels-y {
84         position: absolute;
85         left: 0;
86         top: 0;
87         list-style: none;
88         margin: 0;
89         padding: 0;
90         width: 100%;
91         height: 100%;
92 }
93
94 .labels-x li,
95 .labels-y li {
96         position: absolute;
97         bottom: 0;
98         color: #555;
99         font-size: 75%;
100 }
101
102 .labels-y li span.line {
103         position: absolute;
104         border: 0 solid #ccc;
105         opacity: 0.7;
106 }
107 .labels-x li {
108         margin-top: 5px;
109         bottom: -1.5em;
110 }
111 .labels-y li {
112         width: 100%;
113 }
114 .labels-y li span.label {
115         right: 100%;
116         position: absolute;
117         margin-right: 5px;
118         margin-top: -0.5em;
119 }
120 .labels-y li span.line {
121         border-top-width: 1px;
122         width: 100%;
123 }
124
125 label.included,
126 a#included {
127         color: #080;
128 }
129
130 label.excluded,
131 a#excluded {
132         color: #800;
133 }
134
135 /* delimiter for repeatable data */
136 span.d {
137         color: #ccc;
138 }
139
140 .saved {
141         background: #ffe;
142 }
143
144 form.action_filter {
145         float: right;
146 }