1/* ---------------- forms ------------------------ */
2
3div.dokuwiki form {
4  border: none;
5  display: inline;
6}
7
8div.dokuwiki label.block {
9  display: block;
10  text-align: left;
11  font-weight: bold;
12}
13
14div.dokuwiki label.simple span,
15div.dokuwiki label.block span {
16       width: 120px;
17        display: inline-block;
18}
19
20div.dokuwiki label.simple {
21  display: block;
22  text-align: left;
23  font-weight: normal;
24        margin-bottom: 5px;
25}
26
27div.dokuwiki label.block input.edit {
28  width: 50%;
29}
30
31div.dokuwiki fieldset {
32  width: 300px;
33  text-align: center;
34  border: 1px solid __border__;
35  padding: 0.5em;
36  margin: auto;
37}
38
39div.dokuwiki textarea.edit {
40  font-family: monospace;
41  font-size: 14px;
42  color: __text__;
43  background-color: __background__;
44  border: 1px solid __border__;
45  padding: 0.3em 0 0 0.3em;
46  width: 100%;
47}
48
49/* nice alphatransparency background except for IE <7 */
50html>body div.dokuwiki textarea.edit {
51  background:  __background__ url(images/inputshadow.png) repeat-x top;
52}
53
54div.dokuwiki input.edit,
55div.dokuwiki select.edit {
56  font-size: 100%;
57  border: 1px solid __border__;
58  color: __text__;
59  background-color: __background__;
60  vertical-align: middle;
61  margin: 1px;
62  padding: 0.20em 0.3em;
63  display: inline;
64}
65
66/* nice alphatransparency background except for IE <7 */
67html>body div.dokuwiki input.edit,
68html>body div.dokuwiki select.edit {
69  background:  __background__ url(images/inputshadow.png) repeat-x top;
70}
71
72div.dokuwiki select.edit {
73  padding: 0.1em 0;
74}
75
76div.dokuwiki input.missing {
77  font-size: 100%;
78  border: 1px solid __border__;
79  color: __text__;
80  background-color: __missing_input__;
81  vertical-align: middle;
82  margin: 1px;
83  padding: 0.20em 0.3em;
84  display: inline;
85}
86
87/* disabled style - not understood by IE */
88div.dokuwiki textarea.edit[disabled],
89div.dokuwiki textarea.edit[readonly],
90div.dokuwiki input.edit[disabled],
91div.dokuwiki input.edit[readonly],
92div.dokuwiki button[disabled],
93div.dokuwiki select.edit[disabled] {
94  background-color: __background_neu__!important;
95  color: __text_neu__!important;
96}
97
98/* --------- buttons ------------------- */
99
100div.dokuwiki button {
101  border: 1px solid __border__;
102  color: __text__;
103  background-color: __background__;
104  vertical-align: middle;
105  text-decoration: none;
106  font-size: 100%;
107  cursor: pointer;
108  margin: 1px;
109  padding: 0.125em 0.4em;
110}
111
112/* nice alphatransparency background except for IE <7 */
113html>body div.dokuwiki button {
114  background:  __background__ url(images/buttonshadow.png) repeat-x bottom;
115}
116
117* html div.dokuwiki button {
118  height: 1.8em;
119}
120
121/* --------- search ------------------- */
122
123#dw__search input.edit {
124    width: 8em;
125}
126
127/***** submit button *****/
128
129html > body div.dokuwiki button {
130    background: __button_background__ url(images/buttonbshadow.png) repeat-x scroll center bottom;
131    color: __lighter_gray__;
132    margin-right: 4%;
133    font-weight: bold;
134    padding: 2px 8px;
135}
136
137div.dokuwiki fieldset button {
138    float: left;
139}
140
141div.dokuwiki button[disabled] {
142    background: __button_background__ url(images/buttonshadow.png) repeat-x scroll center bottom;
143    cursor: not-allowed;
144}
145
146#icke__page #subscribe__form {
147        float: left;
148        margin: 5px 5px 5px 0;
149}
150
151#icke__page #subscribe__form fieldset {
152        margin-bottom: 8px;
153        width: auto;
154        text-align: left;
155        font-size: 1.2em;
156        border: none;
157}
158
159#icke__page #subscribe__form fieldset legend {
160        font-size:15px;
161        font-weight:bold;
162        padding-bottom:5px;
163        padding-top:8px;
164        text-align:left;
165}
166
167#icke__page #subscribe__form fieldset label {
168        display: block;
169}
170