Commit 10e76d77 authored by Nico Van den Winckel's avatar Nico Van den Winckel
Browse files

Fixed some linting issues

parent 95f37e4c
Showing with 12 additions and 13 deletions
+12 -13
...@@ -8,15 +8,15 @@ ...@@ -8,15 +8,15 @@
@mixin border-top-radius($radius) { @mixin border-top-radius($radius) {
@if $enable-rounded { @if $enable-rounded {
border-top-right-radius: $radius;
border-top-left-radius: $radius; border-top-left-radius: $radius;
border-top-right-radius: $radius;
} }
} }
@mixin border-right-radius($radius) { @mixin border-right-radius($radius) {
@if $enable-rounded { @if $enable-rounded {
border-bottom-right-radius: $radius;
border-top-right-radius: $radius; border-top-right-radius: $radius;
border-bottom-right-radius: $radius;
} }
} }
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
@mixin border-left-radius($radius) { @mixin border-left-radius($radius) {
@if $enable-rounded { @if $enable-rounded {
border-bottom-left-radius: $radius;
border-top-left-radius: $radius; border-top-left-radius: $radius;
border-bottom-left-radius: $radius;
} }
} }
@mixin clearfix() { @mixin clearfix() {
&::after { &::after {
display: block; display: block;
content: "";
clear: both; clear: both;
content: "";
} }
} }
...@@ -27,8 +27,8 @@ ...@@ -27,8 +27,8 @@
// Set validation states also for addons // Set validation states also for addons
.input-group-addon { .input-group-addon {
color: $color; color: $color;
border-color: $color;
background-color: lighten($color, 40%); background-color: lighten($color, 40%);
border-color: $color;
} }
} }
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
// } // }
// } // }
// @else { // @else {
&:hover { @content } &:hover { @content }
// } // }
} }
...@@ -16,8 +16,7 @@ ...@@ -16,8 +16,7 @@
@if $enable-hover-media-query { @if $enable-hover-media-query {
&:focus { @content } &:focus { @content }
@include hover { @content } @include hover { @content }
} } @else {
@else {
&:focus, &:focus,
&:hover { &:hover {
@content @content
...@@ -32,8 +31,7 @@ ...@@ -32,8 +31,7 @@
@content @content
} }
@include hover { @content } @include hover { @content }
} } @else {
@else {
&, &,
&:focus, &:focus,
&:hover { &:hover {
...@@ -49,8 +47,7 @@ ...@@ -49,8 +47,7 @@
@content @content
} }
@include hover { @content } @include hover { @content }
} } @else {
@else {
&:focus, &:focus,
&:active, &:active,
&:hover { &:hover {
......
...@@ -7,7 +7,9 @@ ...@@ -7,7 +7,9 @@
line-break: auto; line-break: auto;
line-height: $line-height-base; line-height: $line-height-base;
text-align: left; // Fallback for where `start` is not supported text-align: left; // Fallback for where `start` is not supported
// scss-lint:disable DuplicateProperty
text-align: start; text-align: start;
// scss-lint:enable DuplicateProperty
text-decoration: none; text-decoration: none;
text-shadow: none; text-shadow: none;
text-transform: none; text-transform: none;
......
...@@ -5,4 +5,4 @@ ...@@ -5,4 +5,4 @@
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment