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

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

  ViewVC Help
Powered by ViewVC 1.1.26