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: 50%;
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/* END OF IE MAGIC */
27
28div.dataplugin_entry dl dt {
29    font-weight: bold;
30    clear: left;
31    float: left;
32    width: 10em;
33    text-align: right;
34}
35div.dataplugin_entry dl dd {
36    float: left;
37    margin-left: 0.5em;
38}
39
40/* style to hide the entry data */
41
42div.dataplugin_entry.hidden {
43    display: none;
44}
45
46
47/* default styles for the tag cloud */
48ul.dataplugin_cloud {
49    overflow: auto;
50}
51
52ul.dataplugin_cloud li {
53    float: left;
54    list-style-type: none;
55    list-style-image: none;
56    margin: 0 1em 0 0;
57    padding: 0;
58}
59
60ul.dataplugin_cloud li.cl0 { font-size: 70% }
61ul.dataplugin_cloud li.cl1 { font-size: 90% }
62ul.dataplugin_cloud li.cl2 { font-size: 110% }
63ul.dataplugin_cloud li.cl3 { font-size: 130% }
64ul.dataplugin_cloud li.cl4 { font-size: 150% }
65
66/* default styles for the related mode */
67dl.datarelated {
68    margin-left: 1em;
69}
70
71dl.datarelated dd {
72    margin-left: 1em;
73}
74
75dl.datarelated dt {
76    font-weight: bold;
77}
78
79#dw__editform fieldset.plugin__data table tr td label span {
80    display: none;
81}
82
83#dw__editform fieldset.plugin__data table tr td label {
84    /* This is the anchor for the position: absolute autocompletion */
85    display: block;
86    position: relative;
87}
88
89#dw__editform fieldset.plugin__data {
90	font-size: 90%;
91    text-align: left;
92    width: 99%;
93}
94
95#dw__editform fieldset.plugin__data table {
96    text-align: center;
97}
98
99#dw__editform fieldset.plugin__data table td {
100    padding: 0 0.3em;
101}
102
103#dw__editform fieldset.plugin__data table td select,
104#dw__editform fieldset.plugin__data table td input {
105	font-size: 90%;
106    width: 100%;
107}
108
109#dw__editform fieldset.plugin__data table .data_comment input {
110	font-size: 90%;
111    border: none;
112}
113
114#dw__editform fieldset.plugin__data input {
115	font-size: 90%;
116}
117
118/* the section edit button - yes, it's not the most beautiful CSS you've ever seen */
119div.dokuwiki div.editbutton_plugin_semanticdata {
120    margin-top: -1em; /* depends on the dl margin */
121}
122
123div.dokuwiki div.editbutton_plugin_semanticdata form input.button {
124    float: none;
125    margin-left: 1.6em;
126    padding: 0 0.3em;
127    background-image: none;
128    border-top: none;
129}
130