/[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 591 by dpavlin, Fri Nov 28 16:39:37 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  }  }
49    
50  .frey-popup:hover span {  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;          position: absolute;
56          display: block;          display: block;
57          bottom: 1.25em;          bottom: 1.25em;
58          left: 2em;          left: 1.5em;
59    /*
60            right: 1.5em;
61    */
62          z-index: 30;          z-index: 30;
63            overflow: hidden;
64  }  }
65    
66  .frey-popdown:hover code {  a.frey-dropdown:hover code {
67          position: relative;          position: relative;
68          top: 0;          top: 0;
69          right: 0;          right: 0;
# Line 55  Line 71 
71          z-index: 30;          z-index: 30;
72  }  }
73    
74  .frey-popdown code {  .frey-popup code,
75    .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    
# Line 75  Line 90 
90          margin: 3px;          margin: 3px;
91  }  }
92    
93  /* Frey::ObjectBrowser */  /* Frey::Instrospect */
94    
95    .frey-skip {
96            font-size: 80%;
97            color: #aaa;
98    }
99    
100  .frey-object-browser tr th {  .frey-introspect tr th {
101          border-bottom: 1px dashed #ccc;          border-bottom: 1px dashed #ccc;
102  }  }
103    
104  /* stop header from jumping around because of hover popup */  /* stop header from jumping around because of hover popup */
105  .frey-object-browser tr th.p {  .frey-introspect tr th.p {
106          text-align: left;          text-align: left;
107  }  }
108    
109  .frey-object-browser tr td {  .frey-introspect tr td {
110          vertical-align: top;          vertical-align: top;
111  }  }
112    
113  .frey-object-browser tr td.m {  .frey-introspect tr td.m {
114          padding-right: 1em;          padding-right: 1em;
115          font-family: monospace;          font-family: monospace;
116  }  }
117    
118  .frey-object-browser tr .a {  .frey-introspect tr .a {
119          border-left: 1px dashed #ccc;          border-left: 1px dashed #ccc;
120          padding-left: 1em;          padding-left: 1em;
121  }  }
122    
123  .frey-object-browser tr td.a {  .frey-introspect tr td.a {
124          text-align: right;          text-align: right;
125          font-family: monospace;          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 */  /* fix POD =head parts */
143  a.u {  a.u {
144          text-decoration: none;          text-decoration: none;
145          color: black;          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.215  
changed lines
  Added in v.591

  ViewVC Help
Powered by ViewVC 1.1.26