Skip to content

Commit 6936bb3

Browse files
vuejs-jp-botkazupon
authored andcommitted
Unified all single quotes into double quotes in CSS. (vuejs#1129) (vuejs#344)
1 parent 14fd80f commit 6936bb3

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
@@ -95,13 +95,13 @@ a.button
9595
height: 15px
9696
font-weight: 600
9797
&.html .code:before
98-
content: 'HTML'
98+
content: "HTML"
9999
&.js .code:before
100-
content: 'JS'
100+
content: "JS"
101101
&.bash .code:before
102-
content: 'Shell'
102+
content: "Shell"
103103
&.css .code:before
104-
content: 'CSS'
104+
content: "CSS"
105105

106106
#main
107107
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
&.updated
@@ -222,7 +222,7 @@
222222
margin: auto
223223
h2, h3
224224
&:before
225-
content: ''
225+
content: ""
226226
display: block
227227
margin-top: -1 * $mobile-heading-link-padding-top
228228
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)