Skip to content

Commit 1833648

Browse files
authored
Merge branch 'main' into 120-tech-unit-testing-for-autocomplete-combobox
2 parents 8c6b949 + 28a6a9f commit 1833648

10 files changed

+876
-47
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ node_modules
33
api-cache
44
tmp
55
.vscode
6+
.idea
67

78
# auto-gen PHP files/logs
89
php_errors.log

.stylelintrc.json

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"customSyntax": "postcss-less",
3+
"extends": "stylelint-config-standard",
4+
"ignoreFiles": ["**/*.js"],
5+
"rules": {
6+
"alpha-value-notation": null,
7+
"at-rule-empty-line-before": null,
8+
"at-rule-no-unknown": null,
9+
"color-function-notation": null,
10+
"color-hex-length": null,
11+
"comment-empty-line-before": null,
12+
"comment-whitespace-inside": null,
13+
"custom-property-empty-line-before": null,
14+
"custom-property-pattern": null,
15+
"declaration-empty-line-before": null,
16+
"declaration-block-no-duplicate-properties": null,
17+
"declaration-block-no-redundant-longhand-properties": null,
18+
"declaration-block-no-shorthand-property-overrides": null,
19+
"font-family-name-quotes": null,
20+
"font-family-no-missing-generic-family-keyword": null,
21+
"function-name-case": null,
22+
"function-no-unknown": null,
23+
"function-url-quotes": null,
24+
"import-notation": null,
25+
"keyframes-name-pattern": null,
26+
"length-zero-no-unit": null,
27+
"media-feature-range-notation": null,
28+
"media-query-no-invalid": null,
29+
"no-descending-specificity": null,
30+
"no-duplicate-selectors": null,
31+
"property-no-unknown": null,
32+
"property-no-vendor-prefix": null,
33+
"rule-empty-line-before": null,
34+
"selector-class-pattern": null,
35+
"selector-id-pattern": null,
36+
"selector-no-vendor-prefix": null,
37+
"selector-pseudo-element-colon-notation": null,
38+
"shorthand-property-no-redundant-values": null,
39+
"string-no-newline": null,
40+
"value-keyword-case": null,
41+
"value-no-vendor-prefix": null
42+
}
43+
}

less/enable-flyout.less

-3
Original file line numberDiff line numberDiff line change
@@ -508,9 +508,6 @@
508508
right: (230 / @px);
509509

510510
& .enable-flyout {
511-
&__menu-item {
512-
}
513-
514511
&__link {
515512
padding: 17px 0;
516513
margin: -17px 0;

less/shared/mixins-and-vars.less

-3
Original file line numberDiff line numberDiff line change
@@ -221,9 +221,6 @@
221221
box-shadow: @arguments;
222222
}
223223

224-
.viewport-scale() {
225-
}
226-
227224
// This mixin allows focus rules for (mostly) keyboard only.
228225
// It is based on this great blog post above :focus-visible
229226
//

less/sortable-tables.less

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131
th .sortableColumnLabel:hover {
3232
outline: 1px dashed #767676;
3333
}
34-
th .sortableColumnLabel:after {
35-
}
3634
th button {
3735
color: white;
3836
background: transparent;

less/spinbutton.less

-3
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,6 @@ input[type="number"] {
5656
background-color: #faf7f0;
5757
}
5858
}
59-
60-
.spin-button {
61-
}
6259
}
6360

6461
label.sbLabel {

less/tabs.less

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
@import "shared/mixins-and-vars";
2-
.zoltan {
3-
this: that;
4-
}
52

63
#tabs h2 {
74
margin: 0.5em 0;

less/text-spacing.less

Whitespace-only changes.

0 commit comments

Comments
 (0)