4 <meta charset="utf-8" />
5 <link href="../style.css" rel="stylesheet">
6 <title>Test und Entwicklung des Kivitendo-CSS</title>
8 <body class="developing">
10 <h1>Kivitendo-Formular-Elemente</h1>
11 <nav><a href="index.html" title="Zur Übersicht bzw. Inhaltsverzeichnis">Zum Index</a></nav>
22 <h2>Formular-Elemente mit Standard-Einstellungen</h2>
25 <table class="tbl-horizontal">
26 <caption>Klassische Input-Elemente</caption>
27 <colgroup> <col class="wi-small"><col class="wi-mediumsmall"> </colgroup>
31 <td><input type="text" name="input-type-text"></td>
35 <td><input type="password" name="input-type-password"></td>
40 <input type="checkbox" name="input-type-checkbox" value="cb1" id="cb1-1"><label for="cb1-1">1</label>
41 <input type="checkbox" name="input-type-checkbox" value="cb2" id="cb1-2"><label for="cb1-2">2</label>
47 <input type="radio" name="input-type-radio" value="Yes" id="rd1-1"><label for="rd1-1">Yes</label>
48 <input type="radio" name="input-type-radio" value="No" id="rd1-2"><label for="rd1-2">No</label>
53 <td><input type="submit" name="sbmt1"></td>
57 <td><input type="reset" name="rst1"></td>
61 <td><input type="button" name="btn1" value="Anzeigen"></td>
65 <td><input type="image" name="input-type-image"></td>
69 <td><input type="file" name="input-type-file"></td>
75 <table class="tbl-horizontal">
76 <caption>Andere Formular-Elemente</caption>
77 <colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup>
82 <select id="slct1" name="slct1">
83 <option value=""></option>
84 <option value="Hans Magnus Enzensberger">Hans Magnus Enzensberger</option>
85 <option value="Douglas Rushkow" selected>Douglas Rushkow</option>
86 <option value="Timothy Leary">Timothy Leary</option>
87 <option value="Joseph Weizenbaum">Joseph Weizenbaum</option>
93 <td><textarea name="txtarea1">Dies ist ein ganz normaler Text in einem Mehrzeilen-Feld!</textarea></td>
98 <button name="bttn1-1" type="button">Type Button</button><br>
99 <button name="bttn1-2" type="submit">Type Submit</button><br>
100 <button name="bttn1-3" type="reset">Type Reset</button>
106 <table class="tbl-horizontal">
107 <caption>Neue Input-Elemente in HTML5</caption>
108 <colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup>
112 <td><input type="search" name="input-type-search"></td>
116 <td><input type="tel" name="input-type-tel"></td>
120 <td><input type="url" name="input-type-url"></td>
124 <td><input type="email" name="input-type-email"></td>
128 <td><input type="datetime" name="input-type-datetime"></td>
132 <td><input type="date" name="input-type-date"></td>
136 <td><input type="time" name="input-type-time"></td>
140 <td><input type="month" name="input-type-month"></td>
144 <td><input type="week" name="input-type-week"></td>
147 <th>Datetime-Local</th>
148 <td><input type="datetime-local" name="input-type-datetime-local"></td>
152 <td><input type="number" name="input-type-number"></td>
156 <td><input type="range" name="input-type-range"></td>
160 <td><input type="color" name="input-type-color"></td>
166 <table class="tbl-horizontal">
167 <caption>Abmessungen (Beispiel Input[type=text])</caption>
168 <colgroup> <col class="wi-mediumsmall"><col class="wi-verysmall"><col class="wi-lightwide"> </colgroup>
173 <td><input type="text" name="input-type-text" class="wi-smallest"></td>
176 <th>wi-verysmall</th>
178 <td><input type="text" name="input-type-text" class="wi-verysmall"></td>
183 <td><input type="text" name="input-type-text" class="wi-small"></td>
186 <th>wi-mediumsmall</th>
188 <td><input type="text" name="input-type-text" class="wi-mediumsmall"></td>
193 <td><input type="text" name="input-type-text" class="wi-normal"></td>
196 <th>wi-lightwide</th>
198 <td><input type="text" name="input-type-text" class="wi-lightwide"></td>
203 <td><input type="text" name="input-type-text" class="wi-wide"></td>
208 <td><input type="text" name="input-type-text" class="wi-wider"></td>
213 <td><input type="text" name="input-type-text" class="wi-verywide"></td>
218 </div><!-- /.wrapper -->
221 <div class="wrapper">
224 <h2>Abmessungen mit assoziativen Klassennamen</h2>
227 <table class="tbl-horizontal col">
228 <caption>Klasse wi-normal</caption>
229 <colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup>
233 <td><input type="text" name="input-type-text-2" class="wi-normal"></td>
237 <td><input type="password" name="input-type-password-2" class="wi-normal"></td>
241 <td><input type="submit" name="sbmt2" class="wi-normal"></td>
245 <td><input type="reset" name="rst2" class="wi-normal"></td>
249 <td><input type="button" name="btn2" value="Anzeigen" class="wi-normal"></td>
254 <select id="slct1" name="slct2" class="wi-normal">
255 <option value=""></option>
256 <option value="Hans Magnus Enzensberger">Hans Magnus Enzensberger</option>
257 <option value="Douglas Rushkow" selected>Douglas Rushkow</option>
258 <option value="Timothy Leary">Timothy Leary</option>
259 <option value="Joseph Weizenbaum">Joseph Weizenbaum</option>
265 <td><textarea name="txtarea2" class="wi-normal">Dies ist ein ganz normaler Text in einem Mehrzeilen-Feld!</textarea></td>
268 <th>Button (Tag)</th>
270 <button name="bttn1-1" type="button" class="wi-normal">Type Button</button><br>
271 <button name="bttn1-2" type="submit" class="wi-normal">Type Submit</button><br>
272 <button name="bttn1-3" type="reset" class="wi-normal">Type Reset</button>
278 <table class="tbl-horizontal col">
279 <caption>Klasse wi-smallest</caption>
280 <colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup>
284 <td><input type="text" name="input-type-text-2" class="wi-smallest"></td>
288 <td><input type="password" name="input-type-password-2" class="wi-smallest"></td>
292 <td><input type="submit" name="sbmt2" class="wi-smallest"></td>
296 <td><input type="reset" name="rst2" class="wi-smallest"></td>
300 <td><input type="button" name="btn2" value="Anzeigen" class="wi-smallest"></td>
305 <select id="slct1" name="slct2" class="wi-smallest">
306 <option value=""></option>
307 <option value="Hans Magnus Enzensberger">Hans Magnus Enzensberger</option>
308 <option value="Douglas Rushkow" selected>Douglas Rushkow</option>
309 <option value="Timothy Leary">Timothy Leary</option>
310 <option value="Joseph Weizenbaum">Joseph Weizenbaum</option>
316 <td><textarea name="txtarea2" class="wi-smallest">Dies ist ein ganz normaler Text in einem Mehrzeilen-Feld!</textarea></td>
319 <th>Button (Tag)</th>
321 <button name="bttn1-1" type="button" class="wi-smallest">Type Button</button><br>
322 <button name="bttn1-2" type="submit" class="wi-smallest">Type Submit</button><br>
323 <button name="bttn1-3" type="reset" class="wi-smallest">Type Reset</button>
329 <table class="tbl-horizontal col">
330 <caption>Klasse wi-verysmall</caption>
331 <colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup>
335 <td><input type="text" name="input-type-text-2" class="wi-verysmall"></td>
339 <td><input type="password" name="input-type-password-2" class="wi-verysmall"></td>
343 <td><input type="submit" name="sbmt2" class="wi-verysmall"></td>
347 <td><input type="reset" name="rst2" class="wi-verysmall"></td>
351 <td><input type="button" name="btn2" value="Anzeigen" class="wi-verysmall"></td>
356 <select id="slct1" name="slct2" class="wi-verysmall">
357 <option value=""></option>
358 <option value="Hans Magnus Enzensberger">Hans Magnus Enzensberger</option>
359 <option value="Douglas Rushkow" selected>Douglas Rushkow</option>
360 <option value="Timothy Leary">Timothy Leary</option>
361 <option value="Joseph Weizenbaum">Joseph Weizenbaum</option>
367 <td><textarea name="txtarea2" class="wi-verysmall">Dies ist ein ganz normaler Text in einem Mehrzeilen-Feld!</textarea></td>
370 <th>Button (Tag)</th>
372 <button name="bttn1-1" type="button" class="wi-verysmall">Type Button</button><br>
373 <button name="bttn1-2" type="submit" class="wi-verysmall">Type Submit</button><br>
374 <button name="bttn1-3" type="reset" class="wi-verysmall">Type Reset</button>
380 <table class="tbl-horizontal col">
381 <caption>Klasse wi-small</caption>
382 <colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup>
386 <td><input type="text" name="input-type-text-2" class="wi-small"></td>
390 <td><input type="password" name="input-type-password-2" class="wi-small"></td>
394 <td><input type="submit" name="sbmt2" class="wi-small"></td>
398 <td><input type="reset" name="rst2" class="wi-small"></td>
402 <td><input type="button" name="btn2" value="Anzeigen" class="wi-small"></td>
407 <select id="slct1" name="slct2" class="wi-small">
408 <option value=""></option>
409 <option value="Hans Magnus Enzensberger">Hans Magnus Enzensberger</option>
410 <option value="Douglas Rushkow" selected>Douglas Rushkow</option>
411 <option value="Timothy Leary">Timothy Leary</option>
412 <option value="Joseph Weizenbaum">Joseph Weizenbaum</option>
418 <td><textarea name="txtarea2" class="wi-small">Dies ist ein ganz normaler Text in einem Mehrzeilen-Feld!</textarea></td>
421 <th>Button (Tag)</th>
423 <button name="bttn1-1" type="button" class="wi-small">Type Button</button><br>
424 <button name="bttn1-2" type="submit" class="wi-small">Type Submit</button><br>
425 <button name="bttn1-3" type="reset" class="wi-small">Type Reset</button>
431 <table class="tbl-horizontal col">
432 <caption>Klasse wi-mediumsmall</caption>
433 <colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup>
437 <td><input type="text" name="input-type-text-2" class="wi-mediumsmall"></td>
441 <td><input type="password" name="input-type-password-2" class="wi-mediumsmall"></td>
445 <td><input type="submit" name="sbmt2" class="wi-mediumsmall"></td>
449 <td><input type="reset" name="rst2" class="wi-mediumsmall"></td>
453 <td><input type="button" name="btn2" value="Anzeigen" class="wi-mediumsmall"></td>
458 <select id="slct1" name="slct2" class="wi-mediumsmall">
459 <option value=""></option>
460 <option value="Hans Magnus Enzensberger">Hans Magnus Enzensberger</option>
461 <option value="Douglas Rushkow" selected>Douglas Rushkow</option>
462 <option value="Timothy Leary">Timothy Leary</option>
463 <option value="Joseph Weizenbaum">Joseph Weizenbaum</option>
469 <td><textarea name="txtarea2" class="wi-mediumsmall">Dies ist ein ganz normaler Text in einem Mehrzeilen-Feld!</textarea></td>
472 <th>Button (Tag)</th>
474 <button name="bttn1-1" type="button" class="wi-mediumsmall">Type Button</button><br>
475 <button name="bttn1-2" type="submit" class="wi-mediumsmall">Type Submit</button><br>
476 <button name="bttn1-3" type="reset" class="wi-mediumsmall">Type Reset</button>
482 <table class="tbl-horizontal col">
483 <caption>Klasse wi-lightwide</caption>
484 <colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup>
488 <td><input type="text" name="input-type-text-2" class="wi-lightwide"></td>
492 <td><input type="password" name="input-type-password-2" class="wi-lightwide"></td>
496 <td><input type="submit" name="sbmt2" class="wi-lightwide"></td>
500 <td><input type="reset" name="rst2" class="wi-lightwide"></td>
504 <td><input type="button" name="btn2" value="Anzeigen" class="wi-lightwide"></td>
509 <select id="slct1" name="slct2" class="wi-lightwide">
510 <option value=""></option>
511 <option value="Hans Magnus Enzensberger">Hans Magnus Enzensberger</option>
512 <option value="Douglas Rushkow" selected>Douglas Rushkow</option>
513 <option value="Timothy Leary">Timothy Leary</option>
514 <option value="Joseph Weizenbaum">Joseph Weizenbaum</option>
520 <td><textarea name="txtarea2" class="wi-lightwide">Dies ist ein ganz normaler Text in einem Mehrzeilen-Feld!</textarea></td>
523 <th>Button (Tag)</th>
525 <button name="bttn1-1" type="button" class="wi-lightwide">Type Button</button><br>
526 <button name="bttn1-2" type="submit" class="wi-lightwide">Type Submit</button><br>
527 <button name="bttn1-3" type="reset" class="wi-lightwide">Type Reset</button>
533 <table class="tbl-horizontal col">
534 <caption>Klasse wi-wide</caption>
535 <colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup>
539 <td><input type="text" name="input-type-text-2" class="wi-wide"></td>
543 <td><input type="password" name="input-type-password-2" class="wi-wide"></td>
547 <td><input type="submit" name="sbmt2" class="wi-wide"></td>
551 <td><input type="reset" name="rst2" class="wi-wide"></td>
555 <td><input type="button" name="btn2" value="Anzeigen" class="wi-wide"></td>
560 <select id="slct1" name="slct2" class="wi-wide">
561 <option value=""></option>
562 <option value="Hans Magnus Enzensberger">Hans Magnus Enzensberger</option>
563 <option value="Douglas Rushkow" selected>Douglas Rushkow</option>
564 <option value="Timothy Leary">Timothy Leary</option>
565 <option value="Joseph Weizenbaum">Joseph Weizenbaum</option>
571 <td><textarea name="txtarea2" class="wi-wide">Dies ist ein ganz normaler Text in einem Mehrzeilen-Feld!</textarea></td>
574 <th>Button (Tag)</th>
576 <button name="bttn1-1" type="button" class="wi-wide">Type Button</button><br>
577 <button name="bttn1-2" type="submit" class="wi-wide">Type Submit</button><br>
578 <button name="bttn1-3" type="reset" class="wi-wide">Type Reset</button>
584 <table class="tbl-horizontal col">
585 <caption>Klasse wi-wider</caption>
586 <colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup>
590 <td><input type="text" name="input-type-text-2" class="wi-wider"></td>
594 <td><input type="password" name="input-type-password-2" class="wi-wider"></td>
598 <td><input type="submit" name="sbmt2" class="wi-wider"></td>
602 <td><input type="reset" name="rst2" class="wi-wider"></td>
606 <td><input type="button" name="btn2" value="Anzeigen" class="wi-wider"></td>
611 <select id="slct1" name="slct2" class="wi-wider">
612 <option value=""></option>
613 <option value="Hans Magnus Enzensberger">Hans Magnus Enzensberger</option>
614 <option value="Douglas Rushkow" selected>Douglas Rushkow</option>
615 <option value="Timothy Leary">Timothy Leary</option>
616 <option value="Joseph Weizenbaum">Joseph Weizenbaum</option>
622 <td><textarea name="txtarea2" class="wi-wider">Dies ist ein ganz normaler Text in einem Mehrzeilen-Feld!</textarea></td>
625 <th>Button (Tag)</th>
627 <button name="bttn1-1" type="button" class="wi-wider">Type Button</button><br>
628 <button name="bttn1-2" type="submit" class="wi-wider">Type Submit</button><br>
629 <button name="bttn1-3" type="reset" class="wi-wider">Type Reset</button>
635 <table class="tbl-horizontal col">
636 <caption>Klasse wi-verywide</caption>
637 <colgroup> <col class="wi-small"><col class="wi-lightwide"> </colgroup>
641 <td><input type="text" name="input-type-text-2" class="wi-verywide"></td>
645 <td><input type="password" name="input-type-password-2" class="wi-verywide"></td>
649 <td><input type="submit" name="sbmt2" class="wi-verywide"></td>
653 <td><input type="reset" name="rst2" class="wi-verywide"></td>
657 <td><input type="button" name="btn2" value="Anzeigen" class="wi-verywide"></td>
662 <select id="slct1" name="slct2" class="wi-verywide">
663 <option value=""></option>
664 <option value="Hans Magnus Enzensberger">Hans Magnus Enzensberger</option>
665 <option value="Douglas Rushkow" selected>Douglas Rushkow</option>
666 <option value="Timothy Leary">Timothy Leary</option>
667 <option value="Joseph Weizenbaum">Joseph Weizenbaum</option>
673 <td><textarea name="txtarea2" class="wi-verywide">Dies ist ein ganz normaler Text in einem Mehrzeilen-Feld!</textarea></td>
676 <th>Button (Tag)</th>
678 <button name="bttn1-1" type="button" class="wi-verywide">Type Button</button><br>
679 <button name="bttn1-2" type="submit" class="wi-verywide">Type Submit</button><br>
680 <button name="bttn1-3" type="reset" class="wi-verywide">Type Reset</button>