~ubuntu-branches/ubuntu/intrepid/moin/intrepid-updates

« back to all changes in this revision

Viewing changes to wiki/htdocs/classic/css/screen.css

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-02-14 16:09:24 UTC
  • mfrom: (0.2.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20060214160924-fyrx3gvknzqvt4vj
Tags: 1.5.2-1ubuntu1
Drop python2.3 package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
/* user interface styles */
36
36
 
37
37
#header {
38
 
    margin: 0;
39
 
    padding: 0;
 
38
    margin: 1px;
 
39
    padding: 1px;
40
40
    line-height: 1.1em;
41
41
}
42
42
 
255
255
        color: black; 
256
256
}
257
257
 
 
258
.editbar {
 
259
    clear: both;
 
260
    display: block;
 
261
    margin: 0;
 
262
    padding: 0;
 
263
    white-space: nowrap;
 
264
}
 
265
 
 
266
.editbar li {
 
267
    display: inline;
 
268
    padding: 0;
 
269
    margin: 0 6px 0 0;
 
270
}
 
271
 
 
272
*[dir="rtl"] .editbar li {
 
273
    float: right;
 
274
}
 
275
 
 
276
.editbar li p {
 
277
    display: inline;
 
278
}
 
279
 
258
280
#message {
259
281
        clear: both;
260
282
        border: 2px solid #c0c0c0;
383
405
 */
384
406
* html span.anchor { display: none; }
385
407
 
 
408
/* IE6 has a bug with rendering of float elements. We workaround this bug by
 
409
 * assigning those elements a height attribute because we currently don't know
 
410
 * a better solution. This results in IE calculating the correct height of the
 
411
 * characters and displaying them correctly. We don't know any negative side
 
412
 * effects of this workaround:
 
413
 */
 
414
* html div#page, * html div#header { height: 0.001%; }
 
415