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