Skip to content

Commit

Permalink
Merge pull request #3 from tomm1996/fix-selector-bug
Browse files Browse the repository at this point in the history
Fix selector bug
  • Loading branch information
BafS committed Feb 23, 2017
2 parents 682a40f + 83979ce commit 3096403
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/gutenberg.css
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ body {
padding-top: 2.54cm;
padding-bottom: 2.54cm; }

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

Expand Down
2 changes: 1 addition & 1 deletion dist/gutenberg.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions scss/_reformat.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// Show link source
// For fully qualified URLs only
a[href^="http://"], &[href^="https://"], &[href^="ftp://"] {
&:after {
content: " (" attr(href) ")";
font-size: 80%;
a {
&[href^="http://"], &[href^="https://"], &[href^="ftp://"] {
&:after {
content: " (" attr(href) ")";
font-size: 80%;
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion scss/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ a.no-reformat:after {
content: ""
}

&abbr[title], &acronym[title] {
abbr[title], acronym[title] {
&.no-reformat:after {
content: ""
}
Expand Down

0 comments on commit 3096403

Please sign in to comment.