-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathtextfield-filled.spec.html
42 lines (40 loc) · 1.22 KB
/
textfield-filled.spec.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<link href="textfield-filled.css" rel="stylesheet">
<label id="normal" class="matter-textfield-filled">
<input placeholder=" "/>
<span>Textfield</span>
</label>
<br/><br/>
<label id="sized" class="matter-textfield-filled" style="width: 240px;">
<input placeholder=" "/>
<span>Sized</span>
</label>
<br/><br/>
<label id="disabled" class="matter-textfield-filled">
<input placeholder=" " disabled/>
<span>Disabled</span>
</label>
<br/><br/>
<label id="xmas" class="matter-textfield-filled" style="width: 240px;">
<input placeholder=" "/>
<span>Xmas Tree</span>
</label>
<br/><br/>
<label id="ta-normal" class="matter-textfield-filled">
<textarea placeholder=" "></textarea>
<span>Textfield</span>
</label>
<br/><br/>
<label id="ta-sized" class="matter-textfield-filled" style="width: 240px; height: 90px;">
<textarea placeholder=" "></textarea>
<span>Sized</span>
</label>
<br/><br/>
<label id="ta-disabled" class="matter-textfield-filled">
<textarea placeholder=" " disabled></textarea>
<span>Disabled</span>
</label>
<br/><br/>
<label id="ta-xmas" class="matter-textfield-filled" style="width: 240px; height: 90px;">
<textarea placeholder=" "></textarea>
<span>Xmas Tree</span>
</label>