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 @@
@mixin border-top-radius($radius) {
@if $enable-rounded {
border-top-right-radius: $radius;
border-top-left-radius: $radius;
border-top-right-radius: $radius;
}
}
@mixin border-right-radius($radius) {
@if $enable-rounded {
border-bottom-right-radius: $radius;
border-top-right-radius: $radius;
border-bottom-right-radius: $radius;
}
}
......@@ -29,7 +29,7 @@
@mixin border-left-radius($radius) {
@if $enable-rounded {
border-bottom-left-radius: $radius;
border-top-left-radius: $radius;
border-bottom-left-radius: $radius;
}
}
@mixin clearfix() {
&::after {
display: block;
content: "";
clear: both;
content: "";
}
}
......@@ -27,8 +27,8 @@
// Set validation states also for addons
.input-group-addon {
color: $color;
border-color: $color;
background-color: lighten($color, 40%);
border-color: $color;
}
}
......
......@@ -8,7 +8,7 @@
// }
// }
// @else {
&:hover { @content }
&:hover { @content }
// }
}
......@@ -16,8 +16,7 @@
@if $enable-hover-media-query {
&:focus { @content }
@include hover { @content }
}
@else {
} @else {
&:focus,
&:hover {
@content
......@@ -32,8 +31,7 @@
@content
}
@include hover { @content }
}
@else {
} @else {
&,
&:focus,
&:hover {
......@@ -49,8 +47,7 @@
@content
}
@include hover { @content }
}
@else {
} @else {
&:focus,
&:active,
&:hover {
......
......@@ -7,7 +7,9 @@
line-break: auto;
line-height: $line-height-base;
text-align: left; // Fallback for where `start` is not supported
// scss-lint:disable DuplicateProperty
text-align: start;
// scss-lint:enable DuplicateProperty
text-decoration: none;
text-shadow: none;
text-transform: none;
......
......@@ -5,4 +5,4 @@
overflow: hidden;
text-overflow: ellipsis;
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