-
Notifications
You must be signed in to change notification settings - Fork 465
Open
Description
scss-lint can at the same time both recognize the proper ordering for scrollbar-color
and scrollbar-width
, but it also tells me it has no idea what scrollbar-color
is and that it's most probably a spelling error. See the attached image for the simultaneous warnings. Reversing the order of them only leaves the PropertySpelling
warning.
scrollbar-color
on MDN
(S)CSS causing the issue:
table {
border-collapse: collapse;
margin: 0 auto;
max-width: 85%;
min-width: 60%;
overflow-x: scroll;
scrollbar-width: thin;
scrollbar-color: $scrollbarcolor;
th {
background-color: $thbg;
text-align: center;
}
tr:nth-child(even) {
background-color: $theven;
}
td,
th {
border: 1px solid $tableborder;
padding: 3px;
}
}
Metadata
Metadata
Assignees
Labels
No labels