Skip to content

Commit 540a839

Browse files
committed
Latest source files
Webpack seems to be broken, yet again. Will investigate later.
1 parent 1610248 commit 540a839

File tree

5 files changed

+257
-230
lines changed

5 files changed

+257
-230
lines changed

.stylelintrc.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins:
99

1010
rules:
1111

12-
# Specify percentage or number notation for alpha-values.
12+
# Specify percentage or number notation for alpha-values.
1313
alpha-value-notation: number
1414

1515
# Specify a list of disallowed at-rules.
@@ -125,6 +125,9 @@ rules:
125125
# Disallow empty comments.
126126
comment-no-empty: true
127127

128+
# Specify a pattern for comments.
129+
#comment-pattern:
130+
128131
# Require or disallow whitespace on the inside of comment markers.
129132
comment-whitespace-inside: always
130133

@@ -216,7 +219,7 @@ rules:
216219
font-family-no-missing-generic-family-keyword: true
217220

218221
# Require numeric or named (where possible) `font-weight` values.
219-
font-weight-notation: named-where-possible
222+
font-weight-notation: numeric
220223

221224
# Specify a blacklist of disallowed functions.
222225
#function-blacklist:
@@ -371,6 +374,12 @@ rules:
371374
# Disallow double-slash comments (`//`) which are not supported by CSS.
372375
no-invalid-double-slash-comments: true
373376

377+
# Disallow invalid position `@import` rules within a stylesheet.
378+
no-invalid-position-at-import-rule: true
379+
380+
# Disallow irregular whitespaces.
381+
no-irregular-whitespace: true
382+
374383
# Disallow missing end-of-source newlines.
375384
no-missing-end-of-source-newline: true
376385

@@ -415,6 +424,9 @@ rules:
415424
# Require a single space or disallow whitespace on the inside of the brackets within attribute selectors.
416425
selector-attribute-brackets-space-inside: never
417426

427+
# Specify a list of disallowed attribute names.
428+
#selector-attribute-name-disallowed-list:
429+
418430
# Specify a blacklist of disallowed attribute operators.
419431
#selector-attribute-operator-blacklist:
420432

@@ -448,6 +460,9 @@ rules:
448460
# Disallow non-space characters for descendant combinators of selectors.
449461
selector-descendant-combinator-no-non-space: true
450462

463+
# Specify a list of disallowed selectors.
464+
#selector-disallowed-list:
465+
451466
# Specify a pattern for ID selectors.
452467
#selector-id-pattern:
453468

@@ -1073,9 +1088,6 @@ rules:
10731088
# Disallow duplicate mixins within a stylesheet.
10741089
scss/no-duplicate-mixins: true
10751090

1076-
# Disallows the use of global function names, as these global functions are now located inside built-in Sass modules.
1077-
scss/no-global-function-names: true
1078-
10791091
# Disallow linebreaks after Sass operators.
10801092
scss/operator-no-newline-after: true
10811093

scss/modules/jquery-ui/_button.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@
6363

6464
&:focus {
6565
border-color: var(--clr-focus);
66-
outline: 2px solid transparent; // Allows for repainting in high contrast modes.
66+
outline: 0;
67+
box-shadow: 0 0 0 1px var(--clr-focus-a50);
6768
color: var(--clr-text-btn-active);
6869
}
6970
}

scss/modules/jquery-ui/_core.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
.ui-widget-header {
104104
@include setup.gradient-linear(var(--clr-grad-from), var(--clr-grad-to));
105105

106-
font-weight: bold;
106+
font-weight: 700;
107107
}
108108

109109

@@ -251,7 +251,7 @@ a.ui-state-default:focus {
251251
*/
252252

253253
.ui-priority-primary {
254-
font-weight: bold;
254+
font-weight: 700;
255255
}
256256

257257
/**
@@ -260,7 +260,7 @@ a.ui-state-default:focus {
260260

261261
.ui-priority-secondary {
262262
opacity: 0.66;
263-
font-weight: normal;
263+
font-weight: 400;
264264
}
265265

266266
/**

0 commit comments

Comments
 (0)