1/* translate links */
2div.dokuwiki div.plugin_translate {
3    float: right;
4    font-size: 95%;
5    padding-right: 0.1em;
6    margin-bottom: 0.3em;
7}
8
9div.dokuwiki div.plugin_translate ul {
10    padding: 0;
11    margin: 0;
12    list-style: none;
13}
14div.dokuwiki div.plugin_translate ul li{
15    float: left;
16    list-style-type: none;
17    padding: 0;
18    margin: 0.2em 0 0 0;
19}
20
21div.dokuwiki div.plugin_translate ul li a.wikilink1,
22div.dokuwiki div.plugin_translate ul li a.wikilink2 {
23    margin: 0.1em 0.2em;
24}
25/* translate page with form */
26div.dokuwiki form#translate__plugin fieldset {
27    width:40em;
28}
29div.dokuwiki form#translate__plugin label {
30    display:block;
31    margin:5px;
32    overflow:auto;
33}
34div.dokuwiki form#translate__plugin label span {
35    display:block;
36    float:left;
37    text-align:right;
38    width:38%;
39}
40div.dokuwiki form#translate__plugin label textarea.edit,
41div.dokuwiki form#translate__plugin label input.edit {
42    display:block;
43    float:left;
44    margin-left:5px;
45    width:58%;
46}
47div.dokuwiki form#translate__plugin label select {
48    display:block;
49    float:left;
50    margin-left:5px;
51}
52
53/* edit page */
54div.dokuwiki div#wrapper__wikitext.hor {
55    float:left;
56    width:53%;
57}
58div.dokuwiki div#wrapper__sourcetext.hor {
59    float:right;
60    width:46%;
61}
62div.dokuwiki div#wrapper__sourcetext.ver {
63    margin-top: 2px;
64}
65div.dokuwiki div#wrapper__sourcetext.off {
66    display:none;
67}
68
69
70/* vim:ts=4:sw=4:et:enc=utf-8: */
71