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

Legend:
Removed from v.212  
changed lines
  Added in v.473

  ViewVC Help
Powered by ViewVC 1.1.26