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

Legend:
Removed from v.206  
changed lines
  Added in v.394

  ViewVC Help
Powered by ViewVC 1.1.26