/[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

Diff of /trunk/static/frey.css

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

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

Legend:
Removed from v.199  
changed lines
  Added in v.591

  ViewVC Help
Powered by ViewVC 1.1.26