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