/[Frey]/trunk/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 /trunk/static/frey.css

Parent Directory Parent Directory | Revision Log Revision Log


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

  ViewVC Help
Powered by ViewVC 1.1.26