Skip to content
This repository was archived by the owner on Mar 2, 2024. It is now read-only.

Commit 47759f4

Browse files
committed
FUCK YEAAAAAHHHH!!!
1 parent 7a361b5 commit 47759f4

25 files changed

+494
-530
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<snippet>
2+
<content><![CDATA[
3+
<label class="c-input c-checkbox">
4+
<input type="checkbox">
5+
<span class="c-indicator"></span>
6+
Check this custom checkbox
7+
</label>
8+
]]></content>
9+
<tabTrigger>form:checkbox:custom</tabTrigger>
10+
</snippet>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<snippet>
2+
<content><![CDATA[
3+
<label class="checkbox-inline">
4+
<input type="checkbox" id="${1:inlineCheckbox1}" value="${2:option1}"> ${3:1}
5+
</label>
6+
<label class="checkbox-inline">
7+
<input type="checkbox" id="${1:inlineCheckbox2}" value="${2:option2}"> ${3:2}
8+
</label>
9+
<label class="checkbox-inline">
10+
<input type="checkbox" id="${1:inlineCheckbox3}" value="${2:option3}"> ${3:3}
11+
</label>
12+
]]></content>
13+
<tabTrigger>form:checkbox:inline</tabTrigger>
14+
</snippet>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<snippet>
2+
<content><![CDATA[
3+
<div class="checkbox">
4+
<label>
5+
<input type="checkbox" id="${1:blankCheckbox}" value="${2:option1}">
6+
</label>
7+
</div>
8+
]]></content>
9+
<tabTrigger>form:checkbox:wo_label</tabTrigger>
10+
</snippet>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<snippet>
2+
<content><![CDATA[
3+
<form>
4+
<div class="form-group row">
5+
<label for="${1:inputEmail3}" class="col-sm-2 form-control-label">Email</label>
6+
<div class="col-sm-10">
7+
<input type="email" class="form-control" id="${1:inputEmail3}" placeholder="${10:Email}">
8+
</div>
9+
</div>
10+
<div class="form-group row">
11+
<label for="${4:inputPassword3}" class="col-sm-2 form-control-label">Password</label>
12+
<div class="col-sm-10">
13+
<input type="password" class="form-control" id="${4:inputPassword3}" placeholder="${10:Password}">
14+
</div>
15+
</div>
16+
<div class="form-group row">
17+
<label class="col-sm-2">Radios</label>
18+
<div class="col-sm-10">
19+
<div class="radio">
20+
<label>
21+
<input type="radio" name="gridRadios" id="${5:gridRadios1}" value="${6:option1}" checked>
22+
${7:Option one is this and that&mdash;be sure to include why it's great}
23+
</label>
24+
</div>
25+
<div class="radio">
26+
<label>
27+
<input type="radio" name="gridRadios" id="${5:gridRadios2}" value="${6:option2}">
28+
${7:Option two can be something else and selecting it will deselect option one}
29+
</label>
30+
</div>
31+
<div class="radio disabled">
32+
<label>
33+
<input type="radio" name="gridRadios" id="${5:gridRadios3}" value="${6:option3}" disabled>
34+
${7:Option three is disabled}
35+
</label>
36+
</div>
37+
</div>
38+
</div>
39+
<div class="form-group row">
40+
<label class="col-sm-2">Checkbox</label>
41+
<div class="col-sm-10">
42+
<div class="checkbox">
43+
<label>
44+
<input type="checkbox"> Check me out
45+
</label>
46+
</div>
47+
</div>
48+
</div>
49+
<div class="form-group row">
50+
<div class="col-sm-offset-2 col-sm-10">
51+
<button type="submit" class="btn btn-secondary">Sign in</button>
52+
</div>
53+
</div>
54+
</form>
55+
]]></content>
56+
<tabTrigger>form:checkbox</tabTrigger>
57+
</snippet>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<snippet>
2+
<content><![CDATA[
3+
<div class="row">
4+
<div class="col-xs-2">
5+
<input type="text" class="form-control" placeholder="${10:.col-xs-2}">
6+
</div>
7+
<div class="col-xs-3">
8+
<input type="text" class="form-control" placeholder="${10:.col-xs-3}">
9+
</div>
10+
<div class="col-xs-4">
11+
<input type="text" class="form-control" placeholder="${10:.col-xs-4}">
12+
</div>
13+
</div>
14+
]]></content>
15+
<tabTrigger>form:column:sizing</tabTrigger>
16+
</snippet>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<snippet>
2+
<content><![CDATA[
3+
<form>
4+
<fieldset disabled>
5+
<div class="form-group">
6+
<label for="disabledTextInput">Disabled input</label>
7+
<input type="text" id="disabledTextInput" class="form-control" placeholder="${10:Disabled input}">
8+
</div>
9+
<div class="form-group">
10+
<label for="disabledSelect">Disabled select menu</label>
11+
<select id="disabledSelect" class="form-control">
12+
<option>${1:Disabled select}</option>
13+
</select>
14+
</div>
15+
<div class="checkbox">
16+
<label>
17+
<input type="checkbox"> Can't check this
18+
</label>
19+
</div>
20+
<button type="submit" class="btn btn-primary">Submit</button>
21+
</fieldset>
22+
</form>
23+
]]></content>
24+
<tabTrigger>form:disabled</tabTrigger>
25+
</snippet>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<snippet>
2+
<content><![CDATA[
3+
<label class="file">
4+
<input type="file" id="file">
5+
<span class="file-custom"></span>
6+
</label>
7+
]]></content>
8+
<tabTrigger>form:file-browser</tabTrigger>
9+
</snippet>

0 commit comments

Comments
 (0)