Skip to content

Removed all unnecessary colons in stylus files. #1000

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

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 5 additions & 5 deletions themes/vue/source/css/_animations.styl
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.rotating-clockwise
animation: 3s rotating-clockwise linear infinite
animation 3s rotating-clockwise linear infinite

i.rotating-clockwise
display: inline-block
animation-duration: 2s
display inline-block
animation-duration 2s

@keyframes rotating-clockwise
from
transform: rotate(0)
transform rotate(0)
to
transform: rotate(360deg)
transform rotate(360deg)
16 changes: 8 additions & 8 deletions themes/vue/source/css/_common.styl
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ body
background-color white
margin 0
&.docs
padding-top: $header-height
padding-top $header-height

@media screen and (max-width: 900px)
@media screen and (max-width 900px)
body.docs
padding-top: 0
padding-top 0

a
text-decoration none
Expand Down Expand Up @@ -174,19 +174,19 @@ a.button
margin 0
display block
> ul
padding-left: 0
padding-left 0
&:first-child
h4
margin-top 0
padding-top: 0
border-top: 0
padding-top 0
border-top 0
a, h4
padding 0 24px 0 20px
h4
// text-transform uppercase
margin .45em 0 0
padding-top: .45em
border-top: 1px solid #eee
padding-top .45em
border-top 1px solid #eee
a
color lighten($dark, 10%)
font-size .9em
Expand Down
6 changes: 3 additions & 3 deletions themes/vue/source/css/_demo.styl
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@ ul#demo, ul.demo
li
margin-left 1.5em

@media screen and (max-width: 900px)
@media screen and (max-width 900px)
#demo, .demo
margin-left 0

.benchmark-table
margin: 0 auto
margin 0 auto
text-align center

tbody > tr > th
text-align right

th, td
padding: 3px 7px
padding 3px 7px
2 changes: 1 addition & 1 deletion themes/vue/source/css/_header.styl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $header-height = 40px

#header
background-color #fff
height: $header-height
height $header-height
padding $heading-padding-vertical 60px
position relative
z-index 2
Expand Down
18 changes: 9 additions & 9 deletions themes/vue/source/css/_migration.styl
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
.content.guide[class*="migration"]
h2, h3
> sup
margin-left: .3em
color: #b9465c
margin-left .3em
color #b9465c
.upgrade-path
margin-top: 2em
padding: 2em
background: rgba(73, 195, 140, .1)
border-radius: 2px
margin-top 2em
padding 2em
background rgba(73, 195, 140, .1)
border-radius 2px
> h4
margin-top: 0
margin-top 0
> p:last-child
margin-bottom: 0
padding-bottom: 0
margin-bottom 0
padding-bottom 0
16 changes: 8 additions & 8 deletions themes/vue/source/css/_offline-menu.styl
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
.content.menu
font-size: 1.2em
font-size 1.2em
.menu-root
padding-left: 0
padding-left 0
#search-form, .algolia-autocomplete, input
width: 100%
width 100%
.aa-dropdown-menu
box-sizing: border-box
box-sizing border-box
h3
margin: 1.5em 0 .75em
margin 1.5em 0 .75em
&:before, &:after
display: none
display none
li
list-style-type: none
margin-top: .1em
list-style-type none
margin-top .1em
4 changes: 2 additions & 2 deletions themes/vue/source/css/_sidebar.styl
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@
.nav-dropdown
h4
font-weight normal
margin: 0
margin 0

@media screen and (max-width: 900px)
@media screen and (max-width 900px)
.sidebar
position fixed
z-index 8
Expand Down
22 changes: 11 additions & 11 deletions themes/vue/source/css/_syntax.styl
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
color #999

pre
color: #525252
color #525252
.function .keyword,
.constant
color: #0092db
color #0092db
.keyword,
.attribute
color: #e96900
color #e96900
.number,
.literal
color: #AE81FF
color #AE81FF
.tag,
.tag .title,
.change,
Expand All @@ -21,16 +21,16 @@ pre
.clojure .built_in,
.nginx .title,
.tex .special
color: #2973b7
color #2973b7
.class .title
color: white
color white
.symbol,
.symbol .string,
.value,
.regexp
color: $green
color $green
.title
color: #A6E22E
color #A6E22E
.tag .value,
.string,
.subst,
Expand All @@ -55,7 +55,7 @@ pre
.apache .cbracket,
.tex .command,
.prompt
color: $green
color $green
.comment,
.java .annotation,
.python .decorator,
Expand All @@ -66,12 +66,12 @@ pre
.shebang,
.apache .sqbracket,
.tex .formula
color: #b3b3b3
color #b3b3b3
.coffeescript .javascript,
.javascript .xml,
.tex .formula,
.xml .javascript,
.xml .vbscript,
.xml .css,
.xml .cdata
opacity: 0.5
opacity 0.5
Loading