1/* default style for the entry mode */
2
3div.dataauplugin_entry dl {
4    border: 1px solid __border__;
5    padding: 1em;
6    margin: 1em;
7    font-size: 90%;
8    overflow: auto;
9    width: 70%;
10}
11
12/* DO NOT MESS WITH THIS IT IS IE MAGIC */
13* html div.dataauplugin_entry dl dd {
14    float: none;
15    display: block;
16}
17
18*:first-child+html div.dataauplugin_entry dl dd {
19    float: none;
20    display: block;
21}
22
23*:first-child+html div.dataauplugin_entry dt {
24    padding-right: 0.5em;
25}
26/* END OF IE MAGIC */
27
28div.dataauplugin_entry dl dt {
29    font-weight: bold;
30    clear: left;
31    float: left;
32    width: 10em;
33    text-align: right;
34}
35div.dataauplugin_entry dl dd {
36    float: left;
37    margin-left: 0.5em;
38}
39
40/* style to hide the entry data */
41
42div.dataauplugin_entry.hidden {
43    display: none;
44}
45
46/* default styles for the tag cloud */
47ul.dataauplugin_cloud {
48    overflow: auto;
49}
50
51ul.dataauplugin_cloud li {
52    float: left;
53    list-style-type: none;
54    list-style-image: none;
55    margin: 0 1em 0 0;
56    padding: 0;
57}
58
59ul.dataauplugin_cloud li.cl0 { font-size: 70% }
60ul.dataauplugin_cloud li.cl1 { font-size: 90% }
61ul.dataauplugin_cloud li.cl2 { font-size: 110% }
62ul.dataauplugin_cloud li.cl3 { font-size: 130% }
63ul.dataauplugin_cloud li.cl4 { font-size: 150% }
64
65/* default styles for the related mode */
66dl.dataaurelated {
67    margin-left: 1em;
68}
69
70dl.dataaurelated dd {
71    margin-left: 1em;
72}
73
74dl.dataaurelated dt {
75    font-weight: bold;
76}
77/*
78 * Custom Entry Editor
79 */
80#dw__editform fieldset.plugin__dataau table tr td label span {
81    display: none;
82}
83
84#dw__editform fieldset.plugin__dataau table tr td label {
85    /* This is the anchor for the position: absolute autocompletion */
86    display: block;
87    position: relative;
88}
89
90#dw__editform fieldset.plugin__dataau {
91    text-align: left;
92    width: 99%;
93    margin: 0.5em 0;
94}
95
96#dw__editform fieldset.plugin__dataau table {
97    text-align: center;
98    border: none;
99    margin: 1em 0;
100}
101#dw__editform fieldset.plugin__dataau table {
102    th {
103        border: none;
104    }
105    th.title {
106        width: 20%;
107    }
108    th.type {
109        width: 15%;
110    }
111    th.multi {
112        width: 5%;
113    }
114    th.value {
115        width: 30%;
116    }
117    th.comment {
118        width: 20%;
119    }
120
121
122    td {
123        padding: 0.2em 0.3em;
124        border: none;
125    }
126
127    td.title {
128        font-weight: bold;
129    }
130
131    td select,
132    td input {
133        width: 100%;
134    }
135}
136
137
138#dw__editform fieldset.plugin__dataau table .dataau_comment input {
139    border: none;
140}
141
142/* the section edit button - yes, it's not the most beautiful CSS you've ever seen */
143div.dokuwiki div.editbutton_plugin_dataau {
144    margin-top: -1em; /* depends on the dl margin */
145    float: none;
146}
147
148div.dokuwiki div.editbutton_plugin_dataau form input.button,
149div.dokuwiki div.editbutton_plugin_dataau form button {
150    float: none;
151    margin-left: 1.6em;
152    padding: 0 0.3em;
153    background-image: none;
154    border-top: none;
155}
156
157table.dataauplugin_table th input {
158    width: 98%;
159}
160/* datepicker and autocomplete menu */
161.ui-datepicker {
162    font-size: 0.9em;
163}
164.ui-menu {
165    font-size: 1em;
166}
167