-
Notifications
You must be signed in to change notification settings - Fork 807
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
0.4.1 #282
0.4.1 #282
Conversation
This update adds the `!default` modifier to all defined defaults in `_variables.scss`. This allows for the user to redefine the base variables via import rather than having to patch or completely override the file. E.g.,: ```scss $primary-color: red; @import 'spectre' ```
Add default modifier to all variables
Typo, LESS is now SCSS
height: auto; | ||
max-width: 100%; | ||
width: 100%; | ||
video.video-responsive { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid qualifying class selectors with an element.
} | ||
|
||
summary.accordion-header { | ||
&::-webkit-details-marker { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Begin pseudo classes with a single colon: :
} | ||
} | ||
|
||
summary.accordion-header { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid qualifying class selectors with an element.
max-height: 0; | ||
overflow: hidden; | ||
transition: max-height .2s ease; | ||
.icon { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Selector should have depth of applicability no greater than 2, but was 3
.icon { | ||
transition: all .2s ease; | ||
} | ||
& .accordion-body { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unnecessary parent selector (&)
input:checked ~, | ||
&[open] { | ||
& .accordion-header { | ||
.icon { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Selector should have depth of applicability no greater than 2, but was 3
} | ||
input:checked ~, | ||
&[open] { | ||
& .accordion-header { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unnecessary parent selector (&)
docs/src/docs.scss
Outdated
|
||
&[data-lang="Bash"] { | ||
.tag { | ||
user-select: none; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Properties should be ordered margin-right, user-select
@@ -206,6 +205,13 @@ | |||
.atv { | |||
color: #e06870; | |||
} | |||
|
|||
&[data-lang="Bash"] { | |||
.tag { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Selector should have depth of applicability no greater than 2, but was 3
@@ -41,6 +39,7 @@ | |||
font-weight: 600; | |||
text-transform: uppercase; | |||
} | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line contains trailing whitespace
address
reset which changes font-style to normal Add <address> support #270