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

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

revision 215 by dpavlin, Fri Oct 31 19:59:16 2008 UTC revision 671 by dpavlin, Tue Dec 2 01:31:32 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-dropdown {
29          color: #00f;          color: #00f;
30          padding: 3px;          padding: 3px;
31  }  }
32    
33  .frey-popup:hover,  .frey-popup:hover,
34  .frey-popdown:hover {  .frey-dropdown:hover {
35          background: #eee;          background: #eee;
36          text-decoration: underline;          text-decoration: underline;
37  }  }
38    
39  .frey-popup span,     a.frey-popup    > code,
40  .frey-popdown code {  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 */          display: none;  /* hidden by default */
45          color: #000;          color: #000;
46          background: #eee;          background: #eee;
47          border: 1px solid #aaa;          border: 1px solid #aaa;
48            font-size: 90%;
49  }  }
50    
51  .frey-popup:hover span {     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;          position: absolute;
57          display: block;          display: block;
58          bottom: 1.25em;          bottom: 1.25em;
59          left: 2em;          left: 1.5em;
60    /*
61            right: 1.5em;
62    */
63          z-index: 30;          z-index: 30;
64            overflow: hidden;
65  }  }
66    
67  .frey-popdown:hover code {  a.frey-dropdown:hover > code {
68          position: relative;          position: relative;
69          top: 0;          top: 0;
70          right: 0;          right: 0;
# Line 55  Line 72 
72          z-index: 30;          z-index: 30;
73  }  }
74    
75  .frey-popdown code {  .frey-popup code,
76    .frey-dropdown code {
77          white-space: pre-wrap;          white-space: pre-wrap;
         white-space: -moz-pre-wrap;  
         white-space: -o-pre-wrap;  
78          font-family: monospace;          font-family: monospace;
79  }  }
80    
# Line 75  Line 91 
91          margin: 3px;          margin: 3px;
92  }  }
93    
94  /* Frey::ObjectBrowser */  /* Frey::Instrospect */
95    
96    .frey-skip {
97            font-size: 80%;
98            color: #aaa;
99    }
100    
101  .frey-object-browser tr th {  .frey-introspect tr th {
102          border-bottom: 1px dashed #ccc;          border-bottom: 1px dashed #ccc;
103  }  }
104    
105  /* stop header from jumping around because of hover popup */  /* stop header from jumping around because of hover popup */
106  .frey-object-browser tr th.p {  .frey-introspect tr th.p {
107          text-align: left;          text-align: left;
108  }  }
109    
110  .frey-object-browser tr td {  .frey-introspect tr td {
111          vertical-align: top;          vertical-align: top;
112  }  }
113    
114  .frey-object-browser tr td.m {  .frey-introspect tr td.m {
115          padding-right: 1em;          padding-right: 1em;
116          font-family: monospace;          font-family: monospace;
117  }  }
118    
119  .frey-object-browser tr .a {  .frey-introspect tr .a {
120          border-left: 1px dashed #ccc;          border-left: 1px dashed #ccc;
121          padding-left: 1em;          padding-left: 1em;
122  }  }
123    
124  .frey-object-browser tr td.a {  .frey-introspect tr td.a {
125          text-align: right;          text-align: right;
126          font-family: monospace;          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 */  /* fix POD =head parts */
144  a.u {  a.u {
145          text-decoration: none;          text-decoration: none;
146          color: black;          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-error .fatal {
229            border: 3px dashed #f00;
230    }
231    

Legend:
Removed from v.215  
changed lines
  Added in v.671

  ViewVC Help
Powered by ViewVC 1.1.26