Skip to content

Commit b2ecd5e

Browse files
Jinjiangchrisvfritz
authored andcommitted
Unified all single quotes into double quotes in CSS. (#1129)
1 parent 702b61e commit b2ecd5e

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
@@ -52,7 +52,7 @@
5252
margin: 0 0 1em
5353
h2, h3
5454
&:before
55-
content: ''
55+
content: ""
5656
display: block
5757
margin-top: -1 * $heading-link-padding-top
5858
height: $heading-link-padding-top
@@ -152,12 +152,12 @@
152152
&.tip
153153
border-left-color: $red
154154
&:before
155-
content: '!'
155+
content: "!"
156156
background-color: $red
157157
&.success
158158
border-left-color: $green
159159
&:before
160-
content: '\f00c'
160+
content: "\f00c"
161161
font-family: FontAwesome
162162
background-color: $green
163163

@@ -216,7 +216,7 @@
216216
margin: auto
217217
h2, h3
218218
&:before
219-
content: ''
219+
content: ""
220220
display: block
221221
margin-top: -1 * $mobile-heading-link-padding-top
222222
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)