1/**
2 * Default style definitions for DokuWiki plugin database2
3 *
4 * This file is part of DokuWiki plugin database2 and is available under
5 * GPL version 2. See the following URL for a copy of this license!
6 *
7 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
8 *
9 *
10 * @author Thomas Urban <soletan@nihilum.de>
11 * @version 0.1
12 * @copyright GPLv2
13 *
14 */
15
16
17.database2-disabled
18{
19	font-style: italic;
20	text-align: center;
21	margin: 1em;
22}
23
24table.database2
25{
26	border-collapse: collapse;
27}
28
29table.database2 tr.data-list
30{
31}
32
33table.database2 tr.data-list table
34{
35	border-collapse: collapse;
36	border-right: 1px solid #eeeeee;
37}
38
39table.database2 tr.data-list table thead
40{
41	color: white;
42}
43
44table.database2 tr.data-list table thead th
45{
46	background: #334499;
47	padding: 1px 4px;
48	text-align: center;
49}
50
51table.database2 tr.data-list table thead th.counter
52{
53	background: transparent;
54	border-right: 1px solid #334499;
55}
56
57table.database2 tr.data-list table thead th.commands
58{
59	border-right: 1px solid #334499;
60}
61
62table.database2 tr.data-list table tbody tr.last td
63{
64	border-bottom: 1px solid #eeeeee;
65}
66
67table.database2 tr.data-list table tbody tr.last td.counter
68{
69	border-bottom: none;
70	padding-bottom: 1px;
71}
72
73table.database2 tr.data-list table tbody tr.odd td
74{
75	background: #ffffff;
76}
77
78table.database2 tr.data-list table tbody tr.even td
79{
80	background: #f8f8f8;
81}
82
83table.database2 tr.data-list table tbody td
84{
85	padding: 0 3px;
86
87	border-left: 1px solid #eeeeee;
88
89	font-size: 100% !important;
90}
91
92table.database2 tr.data-list table tbody td.counter
93{
94	color: #aaaaaa;
95	background: transparent !important;
96
97	border-left: none;
98
99	text-align: right;
100}
101
102table.database2 tr.data-list table tbody td.commands
103{
104	border-left: none;
105
106	white-space: nowrap;
107
108	text-align: right;
109}
110
111table.database2 tr.data-list table tbody td.commands input.icon-cmd
112{
113	position: relative;
114	top: 2px;
115}
116
117table.database2 tr.data-list table tbody td.commands input.hidden
118{
119	display: none;
120}
121
122table.database2 tr.data-list table tbody td.integer
123{
124	text-align: right;
125}
126
127table.database2 tr.data-list table tbody td.bool
128{
129	text-align: center;
130}
131
132div.dokuwiki table.inline td.commands
133{
134    white-space: nowrap;
135    text-align: right;
136}
137
138
139
140table.database2 input.pure-text
141{
142	border: none;
143	margin: 0px;
144	padding: 0px;
145
146	font-size: 10pt;
147	font-weight: bold;
148
149	background: transparent;
150	color: black;
151
152	cursor: pointer;
153}
154
155table.database2 input.pure-text.selected
156{
157	color: #ff6600;
158}
159
160table.database2 input.pure-text:hover
161{
162	color: #ff6600;
163	text-decoration: underline;
164}
165
166table.database2 tr.lower-navigation td
167{
168	text-align: right;
169}
170
171
172
173
174/*
175 * filter-related styles
176 */
177
178table.database2 tr.filter
179{
180	text-align: center;
181}
182
183table.database2 tr.filter span.filter-component
184{
185	white-space: nowrap;
186}
187
188table.database2 tr.filter span.commands
189{
190	white-space: nowrap;
191}
192
193table.database2 tr.filter span.commands input
194{
195	position: relative;
196	top: 0.2em;
197}
198
199
200
201
202
203
204
205
206table.database2-single-editor tr.local-error td
207{
208	color: red;
209	padding-top: 0px !important;
210	padding-bottom: 1em !important;
211}
212
213table.database2-single-editor tr td.label
214{
215	text-align: right;
216	padding: 3px 1em 0px 1em;
217}
218
219table.database2-single-editor tr td.field
220{
221	padding: 3px 1em 0px 0px;
222}
223
224