Skip to content

Commit 3096403

Browse files
authored
Merge pull request #3 from tomm1996/fix-selector-bug
Fix selector bug
2 parents 682a40f + 83979ce commit 3096403

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

dist/gutenberg.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ body {
605605
padding-top: 2.54cm;
606606
padding-bottom: 2.54cm; }
607607

608-
a[href^="http://"]:after, [href^="https://"]:after, [href^="ftp://"]:after {
608+
a[href^="http://"]:after, a[href^="https://"]:after, a[href^="ftp://"]:after {
609609
content: " (" attr(href) ")";
610610
font-size: 80%; }
611611

dist/gutenberg.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scss/_reformat.scss

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
// Show link source
22
// For fully qualified URLs only
3-
a[href^="http://"], &[href^="https://"], &[href^="ftp://"] {
4-
&:after {
5-
content: " (" attr(href) ")";
6-
font-size: 80%;
3+
a {
4+
&[href^="http://"], &[href^="https://"], &[href^="ftp://"] {
5+
&:after {
6+
content: " (" attr(href) ")";
7+
font-size: 80%;
8+
}
79
}
810
}
911

scss/_utilities.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ a.no-reformat:after {
1414
content: ""
1515
}
1616

17-
&abbr[title], &acronym[title] {
17+
abbr[title], acronym[title] {
1818
&.no-reformat:after {
1919
content: ""
2020
}

0 commit comments

Comments
 (0)