Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
775 changes: 608 additions & 167 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.4.2",
"semver": "^7.6.0",
"stylelint": "^16.10.0",
"stylelint": "^17.0.0",
"table": "^6.8.1",
"tslib": "^2.8.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/forms/form-control.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Needs refactoring
// stylelint-disable selector-no-qualifying-type, selector-max-compound-selectors
// stylelint-disable selector-no-qualifying-type
// stylelint-disable selector-max-type
// Base form controls
//
Expand Down
1 change: 0 additions & 1 deletion src/forms/form-group.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// stylelint-disable selector-max-compound-selectors
// stylelint-disable selector-max-type

// Form groups
Expand Down
1 change: 0 additions & 1 deletion src/markdown/footnotes.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// stylelint-disable selector-max-type
// stylelint-disable selector-max-compound-selectors

.markdown-body {
[data-footnote-ref] {
Expand Down
2 changes: 1 addition & 1 deletion src/markdown/headings.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Needs refactoring
// stylelint-disable selector-max-compound-selectors, selector-max-specificity
// stylelint-disable selector-max-specificity
// stylelint-disable selector-max-type
.markdown-body {
// Headings
Expand Down
2 changes: 1 addition & 1 deletion src/markdown/images.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Need to target base styles
// stylelint-disable selector-max-compound-selectors, selector-no-qualifying-type
// stylelint-disable selector-no-qualifying-type
// stylelint-disable selector-max-type
.markdown-body {
// Images & Stuff
Expand Down
1 change: 1 addition & 0 deletions src/markdown/markdown-body.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
// FIXME: a:not(:link):not(:visited) would be a little clearer here (and
// possibly faster to match), but it breaks styling of <a href> elements due
// to https://bugs.webkit.org/show_bug.cgi?id=142737.
// stylelint-disable-next-line selector-no-qualifying-type
a:not([href]) {
color: inherit;
text-decoration: none;
Expand Down
2 changes: 1 addition & 1 deletion src/markdown/tables.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Needs refactoring
// stylelint-disable selector-max-type, selector-max-compound-selectors
// stylelint-disable selector-max-type
.markdown-body {
// Tables
table {
Expand Down
2 changes: 1 addition & 1 deletion src/select-menu/select-menu.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// stylelint-disable selector-max-type
// stylelint-disable selector-max-type, selector-no-qualifying-type
// selector-max-type is needed for body:not(.intent-mouse) to target keyboard only styles.

$SelectMenu-max-height: 480px !default;
Expand Down
Loading