Browse code

Add even more width options to allow grids with 6 cols

Benjamin Roth authored on06/07/2017 20:56:51
Showing1 changed files
... ...
@@ -147,13 +147,17 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
147 147
 }
148 148
 
149 149
 .widget.w10 { float: left; width: 10%; }
150
+.widget.w11 { float: left; width: 11.111%; }
150 151
 .widget.w15 { float: left; width: 15%; }
152
+.widget.w16_5 { float: left; width: 16.6665%; }
151 153
 .widget.w20 { float: left; width: 20%; }
154
+.widget.w22 { float: left; width: 22.222%; }
152 155
 .widget.w25 { float: left; width: 25%; }
153 156
 .widget.w30 { float: left; width: 30%; }
154 157
 .widget.w33 { float: left; width: 33.333%; }
155 158
 .widget.w35 { float: left; width: 35%; }
156 159
 .widget.w40 { float: left; width: 40%; }
160
+.widget.w44 { float: left; width: 44.444%; }
157 161
 .widget.w45 { float: left; width: 45%; }
158 162
 .widget.w50 { float: left; width: 50%; }
159 163
 .widget.w55 { float: left; width: 55%; }
... ...
@@ -176,13 +180,17 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
176 180
 
177 181
 @media screen and (max-width: 43em) {
178 182
 	.widget.w10,
183
+	.widget.w11,
179 184
 	.widget.w15,
185
+	.widget.w16_5,
180 186
 	.widget.w20,
187
+	.widget.w22,
181 188
 	.widget.w25,
182 189
 	.widget.w30,
183 190
 	.widget.w33,
184 191
 	.widget.w35,
185 192
 	.widget.w40,
193
+	.widget.w44,
186 194
 	.widget.w45,
187 195
 	.widget.w50,
188 196
 	.widget.w55,
... ...
@@ -200,10 +208,16 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
200 208
 
201 209
 .widget.w10:before,
202 210
 .widget.w10:after,
211
+.widget.w11:before,
212
+.widget.w11:after,
203 213
 .widget.w15:before,
204 214
 .widget.w15:after,
215
+.widget.w16_5:before,
216
+.widget.w16_5:after,
205 217
 .widget.w20:before,
206 218
 .widget.w20:after,
219
+.widget.w22:before,
220
+.widget.w22:after,
207 221
 .widget.w25:before,
208 222
 .widget.w25:after,
209 223
 .widget.w30:before,
... ...
@@ -214,6 +228,8 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
214 228
 .widget.w35:after,
215 229
 .widget.w40:before,
216 230
 .widget.w40:after,
231
+.widget.w44:before,
232
+.widget.w44:after,
217 233
 .widget.w45:before,
218 234
 .widget.w45:after,
219 235
 .widget.w50:before,
... ...
@@ -247,13 +263,17 @@ form:after {
247 263
 }
248 264
 
249 265
 .widget.w10:after,
266
+.widget.w11:after,
250 267
 .widget.w15:after,
268
+.widget.w16_5:after,
251 269
 .widget.w20:after,
270
+.widget.w22:after,
252 271
 .widget.w25:after,
253 272
 .widget.w30:after,
254 273
 .widget.w33:after,
255 274
 .widget.w35:after,
256 275
 .widget.w40:after,
276
+.widget.w44:after,
257 277
 .widget.w45:after,
258 278
 .widget.w50:after,
259 279
 .widget.w55:after,
Browse code

Add 33% and 66% width options to allow grids with 3 cols

Benjamin Roth authored on06/07/2017 20:42:07
Showing1 changed files
... ...
@@ -151,6 +151,7 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
151 151
 .widget.w20 { float: left; width: 20%; }
152 152
 .widget.w25 { float: left; width: 25%; }
153 153
 .widget.w30 { float: left; width: 30%; }
154
+.widget.w33 { float: left; width: 33.333%; }
154 155
 .widget.w35 { float: left; width: 35%; }
155 156
 .widget.w40 { float: left; width: 40%; }
156 157
 .widget.w45 { float: left; width: 45%; }
... ...
@@ -158,6 +159,7 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
158 159
 .widget.w55 { float: left; width: 55%; }
159 160
 .widget.w60 { float: left; width: 60%; }
160 161
 .widget.w65 { float: left; width: 65%; }
162
+.widget.w66 { float: left; width: 66.666%; }
161 163
 .widget.w70 { float: left; width: 70%; }
162 164
 .widget.w75 { float: left; width: 75%; }
163 165
 .widget.w80 { float: left; width: 80%; }
... ...
@@ -178,6 +180,7 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
178 180
 	.widget.w20,
179 181
 	.widget.w25,
180 182
 	.widget.w30,
183
+	.widget.w33,
181 184
 	.widget.w35,
182 185
 	.widget.w40,
183 186
 	.widget.w45,
... ...
@@ -185,6 +188,7 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
185 188
 	.widget.w55,
186 189
 	.widget.w60,
187 190
 	.widget.w65,
191
+	.widget.w66,
188 192
 	.widget.w70,
189 193
 	.widget.w75,
190 194
 	.widget.w80,
... ...
@@ -204,6 +208,8 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
204 208
 .widget.w25:after,
205 209
 .widget.w30:before,
206 210
 .widget.w30:after,
211
+.widget.w33:before,
212
+.widget.w33:after,
207 213
 .widget.w35:before,
208 214
 .widget.w35:after,
209 215
 .widget.w40:before,
... ...
@@ -218,6 +224,8 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
218 224
 .widget.w60:after,
219 225
 .widget.w65:before,
220 226
 .widget.w65:after,
227
+.widget.w66:before,
228
+.widget.w66:after,
221 229
 .widget.w70:before,
222 230
 .widget.w70:after,
223 231
 .widget.w75:before,
... ...
@@ -243,12 +251,13 @@ form:after {
243 251
 .widget.w20:after,
244 252
 .widget.w25:after,
245 253
 .widget.w30:after,
254
+.widget.w33:after,
246 255
 .widget.w35:after,
247 256
 .widget.w40:after,
248 257
 .widget.w45:after,
249 258
 .widget.w50:after,
250 259
 .widget.w55:after,
251
-.widget.w60:after,
260
+.widget.w66:after,
252 261
 .widget.w65:after,
253 262
 .widget.w70:after,
254 263
 .widget.w75:after,
Browse code

Use fixed padding values for widgets

Benjamin Roth authored on06/07/2017 20:36:53
Showing1 changed files
... ...
@@ -81,17 +81,20 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
81 81
  * Widget Styles
82 82
  */
83 83
 .widget {
84
-	padding: 0 1%;
84
+	padding: 0 10px;
85 85
 	margin-bottom: 0.5em;
86
+	-webkit-box-sizing: border-box;
87
+	-moz-box-sizing: border-box;
88
+	box-sizing: border-box;
86 89
 	min-height: 4em;
87 90
 	float: left;
88
-	width: 98%;
91
+	width: 100%;
89 92
 }
90 93
 
91 94
 .widget.cbx {
92 95
 	min-height: 1.5em;
93 96
 	height: 1.5em;
94
-	padding: 4px 1%;
97
+	padding: 4px 10px;
95 98
 }
96 99
 
97 100
 .widget label {
... ...
@@ -143,25 +146,25 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
143 146
 	min-height: 2.1em;
144 147
 }
145 148
 
146
-.widget.w10 { float: left; width: 8%; }
147
-.widget.w15 { float: left; width: 13%; }
148
-.widget.w20 { float: left; width: 18%; }
149
-.widget.w25 { float: left; width: 23%; }
150
-.widget.w30 { float: left; width: 28%; }
151
-.widget.w35 { float: left; width: 33%; }
152
-.widget.w40 { float: left; width: 38%; }
153
-.widget.w45 { float: left; width: 43%; }
154
-.widget.w50 { float: left; width: 48%; }
155
-.widget.w55 { float: left; width: 53%; }
156
-.widget.w60 { float: left; width: 58%; }
157
-.widget.w65 { float: left; width: 63%; }
158
-.widget.w70 { float: left; width: 68%; }
159
-.widget.w75 { float: left; width: 73%; }
160
-.widget.w80 { float: left; width: 78%; }
161
-.widget.w85 { float: left; width: 83%; }
162
-.widget.w90 { float: left; width: 88%; }
163
-.widget.w95 { float: left; width: 93%; }
164
-.widget.w100 { float: left; width: 98%; }
149
+.widget.w10 { float: left; width: 10%; }
150
+.widget.w15 { float: left; width: 15%; }
151
+.widget.w20 { float: left; width: 20%; }
152
+.widget.w25 { float: left; width: 25%; }
153
+.widget.w30 { float: left; width: 30%; }
154
+.widget.w35 { float: left; width: 35%; }
155
+.widget.w40 { float: left; width: 40%; }
156
+.widget.w45 { float: left; width: 45%; }
157
+.widget.w50 { float: left; width: 50%; }
158
+.widget.w55 { float: left; width: 55%; }
159
+.widget.w60 { float: left; width: 60%; }
160
+.widget.w65 { float: left; width: 65%; }
161
+.widget.w70 { float: left; width: 70%; }
162
+.widget.w75 { float: left; width: 75%; }
163
+.widget.w80 { float: left; width: 80%; }
164
+.widget.w85 { float: left; width: 85%; }
165
+.widget.w90 { float: left; width: 90%; }
166
+.widget.w95 { float: left; width: 95%; }
167
+.widget.w100 { float: left; width: 100%; }
165 168
 
166 169
 
167 170
 .widget.clr,
... ...
@@ -188,7 +191,7 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
188 191
 	.widget.w85,
189 192
 	.widget.w90,
190 193
 	.widget.w95,
191
-	.widget.w100 { float: none; width: 98%; }
194
+	.widget.w100 { float: none; width: 100%; }
192 195
 }
193 196
 
194 197
 .widget.w10:before,
Browse code

Some 3.5.x optimizations and bugfixes

Benjamin Roth authored on05/10/2016 11:48:38
Showing1 changed files
... ...
@@ -38,7 +38,7 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
38 38
 	font-size: 123%;
39 39
 	line-height: 2;
40 40
 	font-weight: normal;
41
-	border: none;
41
+	border-bottom: inherit 3px solid;
42 42
 	margin-bottom: 1em;
43 43
 }
44 44
 
... ...
@@ -143,7 +143,6 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
143 143
 	min-height: 2.1em;
144 144
 }
145 145
 
146
-.widget.w5  { float: left; width: 3%; }
147 146
 .widget.w10 { float: left; width: 8%; }
148 147
 .widget.w15 { float: left; width: 13%; }
149 148
 .widget.w20 { float: left; width: 18%; }
... ...
@@ -171,7 +170,6 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
171 170
 }
172 171
 
173 172
 @media screen and (max-width: 43em) {
174
-	.widget.w5,
175 173
 	.widget.w10,
176 174
 	.widget.w15,
177 175
 	.widget.w20,
... ...
@@ -193,8 +191,6 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
193 191
 	.widget.w100 { float: none; width: 98%; }
194 192
 }
195 193
 
196
-.widget.w5:before,
197
-.widget.w5:after,
198 194
 .widget.w10:before,
199 195
 .widget.w10:after,
200 196
 .widget.w15:before,
... ...
@@ -239,7 +235,6 @@ form:after {
239 235
 	display: table; /* 2 */
240 236
 }
241 237
 
242
-.widget.w5:after,
243 238
 .widget.w10:after,
244 239
 .widget.w15:after,
245 240
 .widget.w20:after,
Browse code

Remove border from legend

Benjamin Roth authored on22/06/2016 16:21:31
Showing1 changed files
... ...
@@ -38,7 +38,7 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
38 38
 	font-size: 123%;
39 39
 	line-height: 2;
40 40
 	font-weight: normal;
41
-	border-bottom: inherit 3px solid;
41
+	border: none;
42 42
 	margin-bottom: 1em;
43 43
 }
44 44
 
Browse code

Add missing css for 5% width option

Benjamin Roth authored on21/01/2016 10:54:19
Showing1 changed files
... ...
@@ -143,6 +143,7 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
143 143
 	min-height: 2.1em;
144 144
 }
145 145
 
146
+.widget.w5  { float: left; width: 3%; }
146 147
 .widget.w10 { float: left; width: 8%; }
147 148
 .widget.w15 { float: left; width: 13%; }
148 149
 .widget.w20 { float: left; width: 18%; }
... ...
@@ -170,6 +171,7 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
170 171
 }
171 172
 
172 173
 @media screen and (max-width: 43em) {
174
+	.widget.w5,
173 175
 	.widget.w10,
174 176
 	.widget.w15,
175 177
 	.widget.w20,
... ...
@@ -191,6 +193,8 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
191 193
 	.widget.w100 { float: none; width: 98%; }
192 194
 }
193 195
 
196
+.widget.w5:before,
197
+.widget.w5:after,
194 198
 .widget.w10:before,
195 199
 .widget.w10:after,
196 200
 .widget.w15:before,
... ...
@@ -235,6 +239,7 @@ form:after {
235 239
 	display: table; /* 2 */
236 240
 }
237 241
 
242
+.widget.w5:after,
238 243
 .widget.w10:after,
239 244
 .widget.w15:after,
240 245
 .widget.w20:after,
Browse code

Fieldset legends now inherit the colour

Benjamin Roth authored on17/08/2015 17:32:31
Showing1 changed files
... ...
@@ -34,11 +34,11 @@ input[type="number"],input[type="search"],input[type="tel"],input[type="time"],i
34 34
 }
35 35
 
36 36
 .formbody > fieldset legend {
37
-	color: #666666;
37
+	color: inherit;
38 38
 	font-size: 123%;
39 39
 	line-height: 2;
40 40
 	font-weight: normal;
41
-	border-bottom: #cccccc 3px solid;
41
+	border-bottom: inherit 3px solid;
42 42
 	margin-bottom: 1em;
43 43
 }
44 44
 
Browse code

Initial commit

Benjamin Roth authored on27/03/2015 10:45:40
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,314 @@
1
+/**
2
+ * Fomrilicious for Contao Open Source CMS
3
+ *
4
+ * Copyright (C) 2013-2014 eSalesMedia
5
+ *
6
+ * @package eSM_formilicious
7
+ * @link    http://www.esales-media.de
8
+ * @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL
9
+ *
10
+ * @author  Benjamin Roth <benjamin@esales-media.de>
11
+ */
12
+
13
+/**
14
+ *
15
+ */
16
+input[type="text"],input[type="password"],input[type="date"],input[type="datetime"],input[type="email"],
17
+input[type="number"],input[type="search"],input[type="tel"],input[type="time"],input[type="url"],textarea, select {
18
+	width:100%;
19
+	-moz-box-sizing: border-box;
20
+	-webkit-box-sizing: border-box;
21
+	box-sizing: border-box;
22
+}
23
+
24
+.widget input.captcha {
25
+	max-width: 4em;
26
+}
27
+
28
+
29
+/**
30
+ * Fieldset Styles
31
+ */
32
+.formbody > fieldset {
33
+	clear: left;
34
+}
35
+
36
+.formbody > fieldset legend {
37
+	color: #666666;
38
+	font-size: 123%;
39
+	line-height: 2;
40
+	font-weight: normal;
41
+	border-bottom: #cccccc 3px solid;
42
+	margin-bottom: 1em;
43
+}
44
+
45
+.widget .radio_container legend,
46
+.widget .checkbox_container legend {
47
+	color: inherit;
48
+	font-size: 100%;
49
+	font-weight: normal;
50
+	border-bottom: none;
51
+	display: block;
52
+	margin-bottom: 0.4em;
53
+	line-height: 1.5em;
54
+}
55
+
56
+.widget .checkbox_container label,
57
+.widget .radio_container label {
58
+	font-weight: normal;
59
+	display: inline;
60
+	margin-bottom: 0;
61
+}
62
+
63
+.widget .checkbox_container > span,
64
+.widget .radio_container > span {
65
+	display: block;
66
+}
67
+
68
+/**
69
+ * Headline Styles
70
+ */
71
+
72
+.widget.headline {
73
+	margin-top: 1em;
74
+	/*color: #d7ae6e;*/
75
+	font-size: 108%;
76
+	font-weight: bold;
77
+	min-height: 1.5em;
78
+}
79
+
80
+/**
81
+ * Widget Styles
82
+ */
83
+.widget {
84
+	padding: 0 1%;
85
+	margin-bottom: 0.5em;
86
+	min-height: 4em;
87
+	float: left;
88
+	width: 98%;
89
+}
90
+
91
+.widget.cbx {
92
+	min-height: 1.5em;
93
+	height: 1.5em;
94
+	padding: 4px 1%;
95
+}
96
+
97
+.widget label {
98
+	display: block;
99
+	margin-bottom: 0.4em;
100
+	line-height: 1.5em;
101
+}
102
+
103
+/*.widget.error label {
104
+	color: #E23E15;
105
+}*/
106
+.widget.error input,
107
+.widget.error select,
108
+.widget.error textarea {
109
+	border-color: #E23E15;
110
+}
111
+
112
+.widget p.error {
113
+	font-size: 85%;
114
+	margin-top: -0.4em;
115
+	margin-bottom: 0.4em;
116
+}
117
+
118
+.widget.error .errortip {
119
+	background-color: rgb(226, 62, 21);
120
+	border-bottom-left-radius: 50%;
121
+	border-bottom-right-radius: 50%;
122
+	border-top-left-radius: 50%;
123
+	border-top-right-radius: 50%;
124
+	color: rgb(255, 255, 255);
125
+	cursor: help;
126
+	display: block;
127
+	float: right;
128
+	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
129
+	font-size: 13px;
130
+	font-style: normal;
131
+	font-variant: normal;
132
+	font-weight: normal;
133
+	height: 15px;
134
+	line-height: 13px;
135
+	margin-top: 3.25px;
136
+	text-align: center;
137
+	vertical-align: top;
138
+	width: 15px;
139
+}
140
+
141
+.submit_container {
142
+	/*padding-top: 1.9em;*/
143
+	min-height: 2.1em;
144
+}
145
+
146
+.widget.w10 { float: left; width: 8%; }
147
+.widget.w15 { float: left; width: 13%; }
148
+.widget.w20 { float: left; width: 18%; }
149
+.widget.w25 { float: left; width: 23%; }
150
+.widget.w30 { float: left; width: 28%; }
151
+.widget.w35 { float: left; width: 33%; }
152
+.widget.w40 { float: left; width: 38%; }
153
+.widget.w45 { float: left; width: 43%; }
154
+.widget.w50 { float: left; width: 48%; }
155
+.widget.w55 { float: left; width: 53%; }
156
+.widget.w60 { float: left; width: 58%; }
157
+.widget.w65 { float: left; width: 63%; }
158
+.widget.w70 { float: left; width: 68%; }
159
+.widget.w75 { float: left; width: 73%; }
160
+.widget.w80 { float: left; width: 78%; }
161
+.widget.w85 { float: left; width: 83%; }
162
+.widget.w90 { float: left; width: 88%; }
163
+.widget.w95 { float: left; width: 93%; }
164
+.widget.w100 { float: left; width: 98%; }
165
+
166
+
167
+.widget.clr,
168
+.formbody > fieldset {
169
+	clear: left;
170
+}
171
+
172
+@media screen and (max-width: 43em) {
173
+	.widget.w10,
174
+	.widget.w15,
175
+	.widget.w20,
176
+	.widget.w25,
177
+	.widget.w30,
178
+	.widget.w35,
179
+	.widget.w40,
180
+	.widget.w45,
181
+	.widget.w50,
182
+	.widget.w55,
183
+	.widget.w60,
184
+	.widget.w65,
185
+	.widget.w70,
186
+	.widget.w75,
187
+	.widget.w80,
188
+	.widget.w85,
189
+	.widget.w90,
190
+	.widget.w95,
191
+	.widget.w100 { float: none; width: 98%; }
192
+}
193
+
194
+.widget.w10:before,
195
+.widget.w10:after,
196
+.widget.w15:before,
197
+.widget.w15:after,
198
+.widget.w20:before,
199
+.widget.w20:after,
200
+.widget.w25:before,
201
+.widget.w25:after,
202
+.widget.w30:before,
203
+.widget.w30:after,
204
+.widget.w35:before,
205
+.widget.w35:after,
206
+.widget.w40:before,
207
+.widget.w40:after,
208
+.widget.w45:before,
209
+.widget.w45:after,
210
+.widget.w50:before,
211
+.widget.w50:after,
212
+.widget.w55:before,
213
+.widget.w55:after,
214
+.widget.w60:before,
215
+.widget.w60:after,
216
+.widget.w65:before,
217
+.widget.w65:after,
218
+.widget.w70:before,
219
+.widget.w70:after,
220
+.widget.w75:before,
221
+.widget.w75:after,
222
+.widget.w80:before,
223
+.widget.w80:after,
224
+.widget.w85:before,
225
+.widget.w85:after,
226
+.widget.w90:before,
227
+.widget.w90:after,
228
+.widget.w95:before,
229
+.widget.w95:after,
230
+.widget.w100:before,
231
+.widget.w100:after,
232
+form:before,
233
+form:after {
234
+	content: " "; /* 1 */
235
+	display: table; /* 2 */
236
+}
237
+
238
+.widget.w10:after,
239
+.widget.w15:after,
240
+.widget.w20:after,
241
+.widget.w25:after,
242
+.widget.w30:after,
243
+.widget.w35:after,
244
+.widget.w40:after,
245
+.widget.w45:after,
246
+.widget.w50:after,
247
+.widget.w55:after,
248
+.widget.w60:after,
249
+.widget.w65:after,
250
+.widget.w70:after,
251
+.widget.w75:after,
252
+.widget.w80:after,
253
+.widget.w85:after,
254
+.widget.w90:after,
255
+.widget.w95:after,
256
+.widget.w100:after,
257
+form:after {
258
+	clear: both;
259
+}
260
+
261
+.widget.widget-split input[type="text"],
262
+.widget.widget-split input[type="password"],
263
+.widget.widget-split input[type="date"],
264
+.widget.widget-split input[type="datetime"],
265
+.widget.widget-split input[type="email"],
266
+.widget.widget-split input[type="number"],
267
+.widget.widget-split input[type="search"],
268
+.widget.widget-split input[type="tel"],
269
+.widget.widget-split input[type="time"],
270
+.widget.widget-split input[type="url"],
271
+.widget.widget-split textarea,
272
+.widget.widget-split select
273
+{
274
+	max-width: 50% !important;
275
+	min-width: 10% !important;
276
+	float: left;
277
+	margin-right: 10px;
278
+	display: inline;
279
+}
280
+
281
+.widget.widget-split.widget-split-3 input { max-width: 30% !important; }
282
+.widget.widget-split.widget-split-3 input[type="submit"] { max-width: 70% !important; }
283
+.widget.widget-split.widget-split-4 input { max-width: 40% !important; }
284
+.widget.widget-split.widget-split-4 input[type="submit"] { max-width: 60% !important; }
285
+.widget.widget-split.widget-split-5 input { max-width: 50% !important; }
286
+.widget.widget-split.widget-split-5 input[type="submit"] { max-width: 50% !important; }
287
+.widget.widget-split.widget-split-6 input { max-width: 60% !important; }
288
+.widget.widget-split.widget-split-6 input[type="submit"] { max-width: 40% !important; }
289
+.widget.widget-split.widget-split-7 input { max-width: 70% !important; }
290
+.widget.widget-split.widget-split-7 input[type="submit"] { max-width: 30% !important; }
291
+
292
+
293
+.widget.fl_right input[type="submit"],
294
+.submit_container.fl_right .submit {
295
+	float: right;
296
+}
297
+
298
+.widget.lblp {
299
+	padding-top: 1.9em;
300
+	min-height: 2.1em;
301
+}
302
+
303
+.widget.autoh {
304
+	min-height: 0;
305
+}
306
+
307
+/**
308
+ * For IE 6/7 only
309
+ * Include this rule to trigger hasLayout and contain floats.
310
+ */
311
+.widget,
312
+form {
313
+	*zoom: 1;
314
+}
0 315
\ No newline at end of file