Skip to content

Commit

Permalink
SCSSLint: Fix SpaceAfterPropertyColon
Browse files Browse the repository at this point in the history
Ensure space after property colon
  • Loading branch information
nschonni committed Apr 1, 2014
1 parent a4d432f commit 139aa06
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .scss-lint.yml
Expand Up @@ -46,5 +46,3 @@ linters:
enabled: false
SpaceAfterComma:
enabled: false
SpaceAfterPropertyColon:
enabled: false
6 changes: 3 additions & 3 deletions src/plugins/multimedia/multimedia.scss
Expand Up @@ -12,7 +12,7 @@
}

to {
transform:rotate(360deg);
transform: rotate(360deg);
}
}

Expand Down Expand Up @@ -75,14 +75,14 @@
animation-duration: 1000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
z-index:2;
z-index: 2;
}

&:before {
@extend %multimedia_loading;
background: rgba(0, 0, 0, 0.7);
border-radius: 10px;
z-index:1;
z-index: 1;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/tables/tables.scss
Expand Up @@ -23,7 +23,7 @@

%tables-float-right {
float: right;
margin-right:-20px;
margin-right: -20px;
}

%tables-text-align-center {
Expand Down
4 changes: 2 additions & 2 deletions src/polyfills/meter/meter.scss
Expand Up @@ -11,7 +11,7 @@ meter {
overflow: hidden;
div {
display: block;
border-right:1px solid #000;
border-right: 1px solid #000;
height: 20px;
background: #b4e391;
background-image: linear-gradient(top, #b4e391 0, #44AA00 35%, #b4e391 100%);
Expand All @@ -25,4 +25,4 @@ meter {
&.meterIsMaxed {
border-right: 0 none !important;
}
}
}
2 changes: 1 addition & 1 deletion theme/sass/parts/_secMenu.scss
Expand Up @@ -17,7 +17,7 @@
a {
color: #333;
font-size: 0.7em;
text-decoration:none;
text-decoration: none;
}
}
.list-group {
Expand Down

0 comments on commit 139aa06

Please sign in to comment.