1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/*
* $Id: MacOSX-heavy.css,v 1.9 2002/02/19 21:36:19 carstenklapp Exp $
*
* phpwiki-heavy.css
*
* This is stuff which should be in phpwiki.css, but which breaks NS4.
*/
/**
* Wiki
*/
/* this completely prevents NS4 from editing pages. */
textarea.wikiedit, input.wikitext, textarea.summary {
background: white;
/* for older browsers */
border: 1px solid black;
border-top: 1px solid #7c7c7c;
border-left: 1px solid #c3c3c3;
border-bottom: 1px solid #dddddd;
border-right: 1px solid #c3c3c3;
padding-left: 0.8em;
padding-right: 0.8em;
padding-top: 0.5em;
padding-bottom: 0.5em;
margin: 0.5ex 0px;
/* This breaks Netscape 4: (display does not go full width).
width: auto;
*/
clear: both;
}
/* This makes spacings in NS4 too big. */
.toolbar , div.toolbar {
margin : 0.5ex 0;
}
/* This break NS4, but is necessary for IE4. */
div.wikitext {
width : auto;
}
/* Link icons */
img.linkicon {
vertical-align : middle;
}
/**
* PageTypes
*/
.interwiki-map thead td,
.interwiki-moniker,
.interwiki-url {
padding-left: 1em;
padding-right: 1em;
}
/**
* Diff Output
*/
/* main box */
.diff {
margin: 0.5ex 0;
padding: 1px;
}
.diff .block {
padding: 0.5ex 0.5em;
}
/* blocks containing deleted or added words */
.diff .original, .diff .deleted,
.diff .final, .diff .added {
padding: 1px;
}
.diff .block div {
position: relative;
padding-left: 1.5em;
}
.diff .prefix {
position: absolute;
left: 0;
top: 0;
}
/* These don't work in NS4 -- it completely ignores <del> and <ins>. */
/* deleted & added words */
.diff del, .diff ins {
padding-left: 0.5ex;
padding-right: 0.5ex;
}
|