Skip to content

Unified all single quotes into double quotes in CSS. #1129

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions themes/vue/source/css/_common.styl
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ a.button
height: 15px
font-weight: 600
&.html .code:before
content: 'HTML'
content: "HTML"
&.js .code:before
content: 'JS'
content: "JS"
&.bash .code:before
content: 'Shell'
content: "Shell"
&.css .code:before
content: 'CSS'
content: "CSS"

#main
position: relative
Expand Down
6 changes: 3 additions & 3 deletions themes/vue/source/css/_settings.styl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// font faces
$body-font = 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif
$logo-font = 'Dosis', 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif
$code-font = 'Roboto Mono', Monaco, courier, monospace
$body-font = "Source Sans Pro", "Helvetica Neue", Arial, sans-serif
$logo-font = "Dosis", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif
$code-font = "Roboto Mono", Monaco, courier, monospace

// font sizes
$body-font-size = 15px
Expand Down
12 changes: 6 additions & 6 deletions themes/vue/source/css/_team.styl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
// .distance
// position: relative
// &:before
// content: '\f1eb'
// content: "\f1eb"
// font-family: FontAwesome
// position: absolute
// top: 50%
Expand All @@ -68,7 +68,7 @@
cursor: help
color: steelblue
&:after
content: '\f06a'
content: "\f06a"
font-family: FontAwesome
font-size: .75em
vertical-align: super
Expand All @@ -87,7 +87,7 @@
font-size: .84em
font-weight: 600
&::after
content: ''
content: ""
margin-right: 7px
i
width: 14px
Expand All @@ -102,16 +102,16 @@
font-weight: 600
&::after
display: block
content: ' '
content: " "
margin-top: .6em
li
display: inline-block
&::after
display: inline-block
content: '·'
content: "·"
margin: 0 8px
&:last-child::after
content: ''
content: ""
.social
a
display: inline-block
Expand Down
2 changes: 1 addition & 1 deletion themes/vue/source/css/index.styl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@import "_common"
@import "_header"
@import '_sidebar'
@import "_sidebar"
@import "_sponsor"

$width = 900px
Expand Down
8 changes: 4 additions & 4 deletions themes/vue/source/css/page.styl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
margin: 0 0 1em
h2, h3
&:before
content: ''
content: ""
display: block
margin-top: -1 * $heading-link-padding-top
height: $heading-link-padding-top
Expand Down Expand Up @@ -151,12 +151,12 @@
&.tip
border-left-color: $red
&:before
content: '!'
content: "!"
background-color: $red
&.success
border-left-color: $green
&:before
content: '\f00c'
content: "\f00c"
font-family: FontAwesome
background-color: $green

Expand Down Expand Up @@ -215,7 +215,7 @@
margin: auto
h2, h3
&:before
content: ''
content: ""
display: block
margin-top: -1 * $mobile-heading-link-padding-top
height: $mobile-heading-link-padding-top
Expand Down
2 changes: 1 addition & 1 deletion themes/vue/source/css/search.styl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import '_settings'
@import "_settings"

$border = #ddd

Expand Down