1/**
2 * This file provides the main design styles for the page content.
3 *
4 * @author Anika Henke <anika@selfthinker.org>
5 * @author Andreas Gohr <andi@splitbrain.org>
6 * @author Klaus Vormweg <klaus.vormweg@gmx.de>
7 */
8
9
10/*____________ links to wiki pages (addition to _links) ____________*/
11/* existing wikipage */
12.dokuwiki a.wikilink1:link {
13  color: __existing__;
14  background-color: inherit;
15}
16.dokuwiki a.wikilink1:hover,
17.dokuwiki a.wikilink1:focus {
18  color: __rollover__;
19  text-decoration: underline;
20}
21/* not existing wikipage */
22.dokuwiki a.wikilink2 {
23  color: __missing__;
24  background-color: inherit;
25}
26
27/*____________ images ____________*/
28/* embedded images (styles are already partly set in DokuWiki's lib/styles/all.css) */
29.dokuwiki img.media {
30  margin: .2em 0;
31}
32.dokuwiki img.medialeft {
33  margin: .2em 1.5em .2em 0;
34}
35.dokuwiki img.mediaright {
36  margin: .2em 0 .2em 1.5em;
37}
38.dokuwiki img.mediacenter {
39  margin: .2em auto;
40}
41
42/*____________ tables ____________*/
43.dokuwiki div.table {
44  overflow-x: auto;
45}
46.dokuwiki table.inline {
47  min-width: 50%;
48}
49.dokuwiki table.inline tr:hover td {
50  background-color: __background_alt__;
51}
52.dokuwiki table.inline tr:hover th {
53  background-color: __border__;
54}
55
56/*____________ lists ____________*/
57.dokuwiki ul li {
58  color: __text_neu__;
59}
60.dokuwiki ul li div.li {
61  color: __text__;
62}
63
64/*____________ code ____________*/
65/* fix if background-color hides underlining */
66.dokuwiki em.u code {
67  text-decoration: underline;
68}
69
70/* filenames for downloadable file and code blocks */
71.dokuwiki dl.file a {
72  text-decoration: none;
73}
74
75.dokuwiki dl.code dt,
76.dokuwiki dl.file dt {
77  background-color: __background_alt__;
78  border: solid __border__;
79  border-width: 1px 1px 0;
80  color: inherit;
81  display: inline;
82  padding: .1em .5em .2em;
83  margin-left: 1em;
84}
85[dir=rtl] .dokuwiki dl.code dt,
86[dir=rtl] .dokuwiki dl.file dt {
87  margin-left: 0;
88  margin-right: 1em;
89}
90.dokuwiki pre.code a,
91.dokuwiki pre.file a {
92  text-decoration: none;
93}
94.dokuwiki pre.code a:hover,
95.dokuwiki pre.file a:hover {
96  text-decoration: underline;
97}
98
99.dokuwiki dl.code dd,
100.dokuwiki dl.file dd {
101  margin: 0;
102}
103
104/* for code in <file> */
105.dokuwiki pre.file,
106.dokuwiki dl.file pre {
107  border-color: __border__;
108}
109
110/* line numbers in file */
111.code .li1, .code .li2, .code.li3 {
112  margin-left: 3em;
113}
114
115
116/*____________ media manager ____________*/
117/* some headings in the media manager should not look like headings */
118#mediamanager__page h2,
119#mediamanager__page h3 {
120  color: __text__;
121}
122
123/* to style button-like div in _fileuploader.css to look like other buttons,
124   please add '.qq-upload-button' to the according styles (which don't really exist in this template) */
125.qq-upload-button {
126  border: 1px solid __border__;
127  border-radius: 3px;
128  cursor: pointer;
129  overflow: visible;
130  padding: .1em .4em;
131  background-color: __background__;
132  padding: 0.25em 0.75em;
133}
134.qq-upload-button:hover {
135  border-color: __borderdark__;
136}
137/*____________ media manager popup dialog ____________*/
138#media__popup_content button.button {
139  padding: 0.25em 0.5em;
140}
141#media__popup_content button.selected {
142  background-color: #f0f0f0;
143  border-color: red;
144}
145
146/*____________ styling plugin ____________*/
147#plugin__styling.ispopup {
148  padding: 1em;
149}
150
151/*____________ admin page _______________*/
152.dokuwiki ul.admin_tasks li {
153  list-style: none;
154}
155ul.admin_tasks span.icon {
156  padding-right: 0.2em;
157  position: relative;
158  top: 0.2em;
159}
160div#admin__version {
161  text-align: right;
162}
163
164/* _____________ Editor _________________*/
165.dokuwiki button.toolbutton {
166  padding: 0.2em 0.4em;
167}
168#wiki__text {
169  font: 100%/1.3 Consolas, "Andale Mono WT", "Andale Mono", "Bitstream Vera Sans Mono", "Nimbus Mono L", Monaco, "Courier New", monospace;
170  color: __text_alt__;
171}
172#wiki__editbar label[for=minoredit] {
173  margin-left: 20.5em;
174}
175
176/*______________ JS popup _______________*/
177.JSpopup {
178  background-color: __background__;
179  color: __text__;
180  border: 1px solid __border__;
181  line-height: 1.2;
182  padding: 0 .2em;
183}
184
185.JSpopup ul,
186.JSpopup ol {
187  padding-left: 0;
188}
189[dir=rtl] .JSpopup ul,
190[dir=rtl] .JSpopup ol {
191  padding-right: 0;
192}
193
194/*______________ diff page  _______________*/
195.dokuwiki table.diff td {
196  font-family: Consolas, "Andale Mono WT", "Andale Mono", "Bitstream Vera Sans Mono", "Nimbus Mono L", Monaco, "Courier New", monospace;
197}
198