/[Frey]/branches/no-pager/static/frey.css
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /branches/no-pager/static/frey.css

Parent Directory Parent Directory | Revision Log Revision Log


Revision 702 - (show annotations)
Wed Dec 3 21:12:43 2008 UTC (15 years, 4 months ago) by dpavlin
File MIME type: text/css
File size: 3510 byte(s)
branch for no-pager integration
1 .frey-status-line {
2 border-top: 1px solid #aaa;
3 color: #444;
4 background-color: #eee;
5 font-size: 80%;
6 padding: 2px;
7 bottom: 0;
8 left: 0;
9 right: 0;
10 position: fixed;
11 z-index: 20;
12 opacity: .5;
13 filter: alpha(opacity=50);
14 }
15
16 .frey-status-line:hover {
17 opacity: 1;
18 filter: alpha(opacity=100);
19 }
20
21 .frey-status-line .right {
22 position: absolute;
23 right: 0.5em;
24 }
25
26 /* style areas over which you can hoover */
27 .frey-popup,
28 .frey-dropdown {
29 color: #00f;
30 padding: 3px;
31 }
32
33 .frey-popup:hover,
34 .frey-dropdown:hover {
35 background: #eee;
36 text-decoration: underline;
37 }
38
39 a.frey-popup > code,
40 span.frey-popup > code,
41 span.frey-popup > span,
42 a.frey-dropdown > code,
43 span.frey-dropdown > code {
44 display: none; /* hidden by default */
45 color: #000;
46 background: #eee;
47 border: 1px solid #aaa;
48 font-size: 90%;
49 }
50
51 a.frey-popup:hover > code,
52 span.frey-popup:hover > code,
53 span.frey-popup:hover > span,
54 a.frey-dropdown:hover > code,
55 span.frey-dropdown:hover > code {
56 position: absolute;
57 display: block;
58 bottom: 1.25em;
59 left: 1.5em;
60 /*
61 right: 1.5em;
62 */
63 z-index: 30;
64 overflow: hidden;
65 }
66
67 a.frey-dropdown:hover > code {
68 position: relative;
69 top: 0;
70 right: 0;
71 display: block;
72 z-index: 30;
73 }
74
75 .frey-popup code,
76 .frey-dropdown code {
77 white-space: pre-wrap;
78 font-family: monospace;
79 }
80
81 /*
82 .frey-popup span {
83 color: #000;
84 background: #eee;
85 border: 1px solid #aaa;
86 }
87
88 */
89
90 .frey-popup span ul {
91 margin: 3px;
92 }
93
94 /* Frey::Instrospect */
95
96 .frey-skip {
97 font-size: 80%;
98 color: #aaa;
99 }
100
101 .frey-introspect tr th {
102 border-bottom: 1px dashed #ccc;
103 }
104
105 /* stop header from jumping around because of hover popup */
106 .frey-introspect tr th.p {
107 text-align: left;
108 }
109
110 .frey-introspect tr td {
111 vertical-align: top;
112 }
113
114 .frey-introspect tr td.m {
115 padding-right: 1em;
116 font-family: monospace;
117 }
118
119 .frey-introspect tr .a {
120 border-left: 1px dashed #ccc;
121 padding-left: 1em;
122 }
123
124 .frey-introspect tr td.a {
125 text-align: right;
126 font-family: monospace;
127 }
128
129 .frey-introspect tr td.t {
130 font-family: monospace;
131 padding-left: 1em;
132 }
133
134 .frey-introspect tr:hover {
135 background: #ffc;
136 }
137
138 .frey-introspect sup {
139 color: #ccc;
140 }
141
142
143 /* fix POD =head parts */
144 a.u {
145 text-decoration: none;
146 color: black;
147 }
148
149
150 /* dark background in sync with my vim setup */
151 .frey-source {
152 font-family: monospace;
153 background: #000;
154 color: #fff;
155 padding: 0.5em;
156 white-space: pre-wrap;
157 /* compress lines to preserve memory footprint in browser for rendering */
158 font-size: 90%;
159 line-height: 1.2ex;
160 }
161
162 .frey-source .keyword { color: #ff6; }
163 .frey-source .core { color: #ff6; }
164 /*
165 .frey-source .word { color: #6f6; }
166 */
167 .frey-source .pod { color: #6ff; }
168 .frey-source .comment { color: #6ff; }
169
170 .frey-source .symbol { color: #6ff; }
171 .frey-source .single { color: #f6f; }
172 .frey-source .double { color: #f6f; }
173 .frey-source .interpolate { color: #f6f; }
174
175 .frey-source .line_number { color: #222; }
176 .frey-source .line_number a { color: #444; text-decoration: none; }
177
178 /* Frey::Dumper */
179
180 .frey-dumper {
181 color: #aaa;
182 }
183
184 .frey-dumper span {
185 color: #000;
186 }
187
188 .frey-dumper ul,
189 .frey-dumper ol {
190 margin-bottom: 0.5em;
191 list-style-position: inside;
192 }
193
194 .frey-dumper ul > li {
195 list-style: none;
196 }
197
198 /*
199 .frey-dumper ul:before {
200 content: "{";
201 }
202
203 .frey-dumper ul:after {
204 content: "}";
205 }
206
207 .frey-dumper ol:before {
208 content: "(";
209 }
210
211 .frey-dumper ol:after {
212 content: ")";
213 }
214 */
215
216 .frey-dumper a.blessed {
217 /*
218 text-decoration: none;
219 */
220 color: #aaa;
221 }
222
223 .frey-error {
224 background: #ffc;
225 padding: 0.5em;
226 }
227
228 .frey-fatal {
229 border: 3px dashed #f00;
230 }
231

  ViewVC Help
Powered by ViewVC 1.1.26