forked from splitbrain/dokuwiki-plugin-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (102 loc) · 2.46 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* default style for the entry mode */
div.dataplugin_entry dl {
border: 1px solid __border__;
padding: 1em;
margin: 1em;
font-size: 90%;
overflow: auto;
width: 50%;
}
/* DO NOT MESS WITH THIS IT IS IE MAGIC */
* html div.dataplugin_entry dl dd {
float: none;
display: block;
}
*:first-child+html div.dataplugin_entry dl dd {
float: none;
display: block;
}
*:first-child+html div.dataplugin_entry dt {
padding-right: 0.5em;
}
/* END OF IE MAGIC */
div.dataplugin_entry dl dt {
font-weight: bold;
clear: left;
float: left;
width: 10em;
text-align: right;
}
div.dataplugin_entry dl dd {
float: left;
margin-left: 0.5em;
}
/* style to hide the entry data */
div.dataplugin_entry.hidden {
display: none;
}
/* default styles for the tag cloud */
ul.dataplugin_cloud {
overflow: auto;
}
ul.dataplugin_cloud li {
float: left;
list-style-type: none;
list-style-image: none;
margin: 0 1em 0 0;
padding: 0;
}
ul.dataplugin_cloud li.cl0 { font-size: 70% }
ul.dataplugin_cloud li.cl1 { font-size: 90% }
ul.dataplugin_cloud li.cl2 { font-size: 110% }
ul.dataplugin_cloud li.cl3 { font-size: 130% }
ul.dataplugin_cloud li.cl4 { font-size: 150% }
/* default styles for the related mode */
dl.datarelated {
margin-left: 1em;
}
dl.datarelated dd {
margin-left: 1em;
}
dl.datarelated dt {
font-weight: bold;
}
#dw__editform fieldset.plugin__data table tr td label span {
display: none;
}
#dw__editform fieldset.plugin__data table tr td label {
/* This is the anchor for the position: absolute autocompletion */
display: block;
position: relative;
}
#dw__editform fieldset.plugin__data {
text-align: left;
width: 99%;
}
#dw__editform fieldset.plugin__data table {
text-align: center;
}
#dw__editform fieldset.plugin__data table td {
padding: 0 0.3em;
}
#dw__editform fieldset.plugin__data table td select,
#dw__editform fieldset.plugin__data table td input {
width: 100%;
}
#dw__editform fieldset.plugin__data table .data_comment input {
border: none;
}
/* the section edit button - yes, it's not the most beautiful CSS you've ever seen */
div.dokuwiki div.editbutton_plugin_data {
margin-top: -1em; /* depends on the dl margin */
}
div.dokuwiki div.editbutton_plugin_data form input.button {
float: none;
margin-left: 1.6em;
padding: 0 0.3em;
background-image: none;
border-top: none;
}
table.dataplugin_table th input {
width: 98%;
}