Skip to content

Commit 2186d9d

Browse files
Jinjiangchrisvfritz
authored andcommitted
Unified all single quotes into double quotes in CSS. (#1129)
1 parent c844eb4 commit 2186d9d

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

themes/vue/source/css/_common.styl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,13 @@ a.button
9696
height: 15px
9797
font-weight: 600
9898
&.html .code:before
99-
content: 'HTML'
99+
content: "HTML"
100100
&.js .code:before
101-
content: 'JS'
101+
content: "JS"
102102
&.bash .code:before
103-
content: 'Shell'
103+
content: "Shell"
104104
&.css .code:before
105-
content: 'CSS'
105+
content: "CSS"
106106

107107
#main
108108
position: relative

themes/vue/source/css/_settings.styl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// font faces
2-
$body-font = 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif
3-
$logo-font = 'Dosis', 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif
4-
$code-font = 'Roboto Mono', Monaco, courier, monospace
2+
$body-font = "Source Sans Pro", "Helvetica Neue", Arial, sans-serif
3+
$logo-font = "Dosis", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif
4+
$code-font = "Roboto Mono", Monaco, courier, monospace
55

66
// font sizes
77
$body-font-size = 15px

themes/vue/source/css/_team.styl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
// .distance
5757
// position: relative
5858
// &:before
59-
// content: '\f1eb'
59+
// content: "\f1eb"
6060
// font-family: FontAwesome
6161
// position: absolute
6262
// top: 50%
@@ -68,7 +68,7 @@
6868
cursor: help
6969
color: steelblue
7070
&:after
71-
content: '\f06a'
71+
content: "\f06a"
7272
font-family: FontAwesome
7373
font-size: .75em
7474
vertical-align: super
@@ -87,7 +87,7 @@
8787
font-size: .84em
8888
font-weight: 600
8989
&::after
90-
content: ''
90+
content: ""
9191
margin-right: 7px
9292
i
9393
width: 14px
@@ -102,16 +102,16 @@
102102
font-weight: 600
103103
&::after
104104
display: block
105-
content: ' '
105+
content: " "
106106
margin-top: .6em
107107
li
108108
display: inline-block
109109
&::after
110110
display: inline-block
111-
content: '·'
111+
content: "·"
112112
margin: 0 8px
113113
&:last-child::after
114-
content: ''
114+
content: ""
115115
.social
116116
a
117117
display: inline-block

themes/vue/source/css/index.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@import "_common"
22
@import "_header"
3-
@import '_sidebar'
3+
@import "_sidebar"
44
@import "_sponsor"
55

66
$width = 900px

themes/vue/source/css/page.styl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
margin: 0 0 1em
5252
h2, h3
5353
&:before
54-
content: ''
54+
content: ""
5555
display: block
5656
margin-top: -1 * $heading-link-padding-top
5757
height: $heading-link-padding-top
@@ -151,12 +151,12 @@
151151
&.tip
152152
border-left-color: $red
153153
&:before
154-
content: '!'
154+
content: "!"
155155
background-color: $red
156156
&.success
157157
border-left-color: $green
158158
&:before
159-
content: '\f00c'
159+
content: "\f00c"
160160
font-family: FontAwesome
161161
background-color: $green
162162

@@ -215,7 +215,7 @@
215215
margin: auto
216216
h2, h3
217217
&:before
218-
content: ''
218+
content: ""
219219
display: block
220220
margin-top: -1 * $mobile-heading-link-padding-top
221221
height: $mobile-heading-link-padding-top

themes/vue/source/css/search.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import '_settings'
1+
@import "_settings"
22

33
$border = #ddd
44

0 commit comments

Comments
 (0)