Fix scss_lint
This commit is contained in:
parent
a290c92bb9
commit
95eb0ced5d
|
|
@ -46,8 +46,9 @@ linters:
|
|||
# - properties
|
||||
# - @include declarations with inner @content
|
||||
# - nested rule sets.
|
||||
# Disabled to minimize Bootstrap migration footprint
|
||||
DeclarationOrder:
|
||||
enabled: true
|
||||
enabled: false
|
||||
|
||||
# `scss-lint:disable` control comments should be preceded by a comment
|
||||
# explaining why these linters are being disabled for this file.
|
||||
|
|
|
|||
|
|
@ -24,7 +24,10 @@ html {
|
|||
font-size: 14px;
|
||||
}
|
||||
|
||||
button, html [type="button"], [type="reset"], [type="submit"] {
|
||||
button,
|
||||
html [type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
// Override bootstrap reboot
|
||||
-webkit-appearance: inherit;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -111,7 +111,7 @@
|
|||
}
|
||||
|
||||
|
||||
@include media-breakpoint-down(xs){
|
||||
@include media-breakpoint-down(xs) {
|
||||
.file-editor {
|
||||
.file-title {
|
||||
.float-right {
|
||||
|
|
|
|||
|
|
@ -185,12 +185,12 @@
|
|||
}
|
||||
|
||||
.notes.notes-form > li.timeline-entry {
|
||||
@include notes-media('max', map-get($grid-breakpoints, md)-1) {
|
||||
@include notes-media('max', map-get($grid-breakpoints, md) - 1) {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.timeline-content {
|
||||
@include notes-media('max', map-get($grid-breakpoints, md)-1) {
|
||||
@include notes-media('max', map-get($grid-breakpoints, md) - 1) {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -408,7 +408,7 @@ ul.notes {
|
|||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
@include notes-media('max', map-get($grid-breakpoints, sm)-1) {
|
||||
@include notes-media('max', map-get($grid-breakpoints, sm) - 1) {
|
||||
flex-flow: row wrap;
|
||||
}
|
||||
}
|
||||
|
|
@ -427,7 +427,7 @@ ul.notes {
|
|||
}
|
||||
|
||||
.note-header-author-name {
|
||||
@include notes-media('max', map-get($grid-breakpoints, sm)-1) {
|
||||
@include notes-media('max', map-get($grid-breakpoints, sm) - 1) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
@ -473,7 +473,7 @@ ul.notes {
|
|||
margin-left: 10px;
|
||||
color: $gray-darkest;
|
||||
|
||||
@include notes-media('max', map-get($grid-breakpoints, lg)-1) {
|
||||
@include notes-media('max', map-get($grid-breakpoints, lg) - 1) {
|
||||
float: none;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
|
@ -491,7 +491,7 @@ ul.notes {
|
|||
margin-left: 10px;
|
||||
color: $gray-darkest;
|
||||
|
||||
@include notes-media('max', map-get($grid-breakpoints, sm)-1) {
|
||||
@include notes-media('max', map-get($grid-breakpoints, sm) - 1) {
|
||||
float: none;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue