OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <body> | 2 <body> |
3 <style> | 3 <style> |
4 input { | 4 input { |
5 margin: 4px; | 5 margin: 4px; |
6 } | 6 } |
7 | 7 |
8 .inputtext { | 8 .inputtext { |
9 border: 1px solid #bdc7d8; | 9 border: 1px solid #bdc7d8; |
10 font-family: "lucida grande", tahoma, verdana, arial, sans-serif; | 10 font-family: "lucida grande", tahoma, verdana, arial, sans-serif; |
(...skipping 25 matching lines...) Expand all Loading... | |
36 | 36 |
37 <!-- font-size --> | 37 <!-- font-size --> |
38 <input type="search" value="foo" style="font-size: 16px;"> | 38 <input type="search" value="foo" style="font-size: 16px;"> |
39 <input type="search" value="foo" style="font-size: 20px;"> | 39 <input type="search" value="foo" style="font-size: 20px;"> |
40 <input type="search" value="foo" style="font-size: 24px;"> <br> | 40 <input type="search" value="foo" style="font-size: 24px;"> <br> |
41 | 41 |
42 <!-- zoom --> | 42 <!-- zoom --> |
43 <input type="search" value="foo" style="zoom: 1.5;"> | 43 <input type="search" value="foo" style="zoom: 1.5;"> |
44 <input type="search" value="foo" style="zoom: 2;"> <br> | 44 <input type="search" value="foo" style="zoom: 2;"> <br> |
45 | 45 |
46 <!-- speech --> | |
tkent
2013/05/28 03:25:33
We don't need to add it because we already have fa
| |
47 <input type="search" value="foo" results=0 x-webkit-speech> <br> | |
48 | |
46 <!-- various style --> | 49 <!-- various style --> |
47 <input type="search" class="inputtext inputsearch" title="Search for Events" pla ceholder="Search for Events" id="q_dashboard" name="q" value="" results="10" /> | 50 <input type="search" class="inputtext inputsearch" title="Search for Events" pla ceholder="Search for Events" id="q_dashboard" name="q" value="" results="10" /> |
48 </body> | 51 </body> |
OLD | NEW |