-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
223 lines (168 loc) · 3.15 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/**
* Default style definitions for DokuWiki plugin database2
*
* This file is part of DokuWiki plugin database2 and is available under
* GPL version 2. See the following URL for a copy of this license!
*
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
*
* @author Thomas Urban <[email protected]>
* @version 0.1
* @copyright GPLv2
*
*/
.database2-disabled
{
font-style: italic;
text-align: center;
margin: 1em;
}
table.database2
{
border-collapse: collapse;
}
table.database2 tr.data-list
{
}
table.database2 tr.data-list table
{
border-collapse: collapse;
border-right: 1px solid #eeeeee;
}
table.database2 tr.data-list table thead
{
color: white;
}
table.database2 tr.data-list table thead th
{
background: #334499;
padding: 1px 4px;
text-align: center;
}
table.database2 tr.data-list table thead th.counter
{
background: transparent;
border-right: 1px solid #334499;
}
table.database2 tr.data-list table thead th.commands
{
border-right: 1px solid #334499;
}
table.database2 tr.data-list table tbody tr.last td
{
border-bottom: 1px solid #eeeeee;
}
table.database2 tr.data-list table tbody tr.last td.counter
{
border-bottom: none;
padding-bottom: 1px;
}
table.database2 tr.data-list table tbody tr.odd td
{
background: #ffffff;
}
table.database2 tr.data-list table tbody tr.even td
{
background: #f8f8f8;
}
table.database2 tr.data-list table tbody td
{
padding: 0 3px;
border-left: 1px solid #eeeeee;
font-size: 100% !important;
}
table.database2 tr.data-list table tbody td.counter
{
color: #aaaaaa;
background: transparent !important;
border-left: none;
text-align: right;
}
table.database2 tr.data-list table tbody td.commands
{
border-left: none;
white-space: nowrap;
text-align: right;
}
table.database2 tr.data-list table tbody td.commands input.icon-cmd
{
position: relative;
top: 2px;
}
table.database2 tr.data-list table tbody td.commands input.hidden
{
display: none;
}
table.database2 tr.data-list table tbody td.integer
{
text-align: right;
}
table.database2 tr.data-list table tbody td.bool
{
text-align: center;
}
div.dokuwiki table.inline td.commands
{
white-space: nowrap;
text-align: right;
}
table.database2 input.pure-text
{
border: none;
margin: 0px;
padding: 0px;
font-size: 10pt;
font-weight: bold;
background: transparent;
color: black;
cursor: pointer;
}
table.database2 input.pure-text.selected
{
color: #ff6600;
}
table.database2 input.pure-text:hover
{
color: #ff6600;
text-decoration: underline;
}
table.database2 tr.lower-navigation td
{
text-align: right;
}
/*
* filter-related styles
*/
table.database2 tr.filter
{
text-align: center;
}
table.database2 tr.filter span.filter-component
{
white-space: nowrap;
}
table.database2 tr.filter span.commands
{
white-space: nowrap;
}
table.database2 tr.filter span.commands input
{
position: relative;
top: 0.2em;
}
table.database2-single-editor tr.local-error td
{
color: red;
padding-top: 0px !important;
padding-bottom: 1em !important;
}
table.database2-single-editor tr td.label
{
text-align: right;
padding: 3px 1em 0px 1em;
}
table.database2-single-editor tr td.field
{
padding: 3px 1em 0px 0px;
}