Skip to content

Commit 98da392

Browse files
committed
Merge pull request #530 from xzyfer/feat/issue-1574
Add specs for issue 1574
2 parents 65aaa31 + bc50c65 commit 98da392

File tree

5 files changed

+41
-0
lines changed

5 files changed

+41
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.foo, input[type="text"], input[type="search"], input[type="url"], input[type="email"], input[type="password"], input[type="number"], input[type="tel"], input[type="date"], input[type="range"], textarea { bar: baz; }
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.foo,input[type="text"],input[type="search"],input[type="url"],input[type="email"],input[type="password"],input[type="number"],input[type="tel"],input[type="date"],input[type="range"],textarea{bar:baz}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.foo, input[type="text"],
2+
input[type="search"],
3+
input[type="url"],
4+
input[type="email"],
5+
input[type="password"],
6+
input[type="number"],
7+
input[type="tel"],
8+
input[type="date"],
9+
input[type="range"],
10+
textarea {
11+
bar: baz;
12+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.foo, input[type="text"],
2+
input[type="search"],
3+
input[type="url"],
4+
input[type="email"],
5+
input[type="password"],
6+
input[type="number"],
7+
input[type="tel"],
8+
input[type="date"],
9+
input[type="range"],
10+
textarea {
11+
bar: baz; }
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.foo {
2+
bar: baz;
3+
}
4+
5+
input[type="text"],
6+
input[type="search"],
7+
input[type="url"],
8+
input[type="email"],
9+
input[type="password"],
10+
input[type="number"],
11+
input[type="tel"],
12+
input[type="date"],
13+
input[type="range"],
14+
textarea {
15+
@extend .foo;
16+
}

0 commit comments

Comments
 (0)