Skip to content

Commit 6719d8f

Browse files
committed
re-add declaration-property-value-no-unknown
1 parent a002593 commit 6719d8f

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

backend/private/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ body {
8181
bottom: 3rem;
8282
background-color: var(--sub-alt-color);
8383
color: var(--text-color);
84-
font-style: bold;
84+
font-weight: bold;
8585
border-radius: 3px;
8686
padding: 1rem 2rem;
8787
cursor: pointer;

frontend/static/themes/chaos_theory.css

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,21 @@
3131
width: 4px !important;
3232
}
3333

34+
/* this is not taking effect since 4 years ago because it is
35+
refering to the old .config which does not exist anymore
36+
did not try it on the new #testConfig yet
3437
.config .toggleButton {
3538
transform: rotateY(180deg);
3639
unicode-bidi: bidi-override;
3740
direction: rtl;
38-
align-content: right;
41+
//align-content: right; // there is no align-content: right
3942
}
4043
4144
.config .mode .textButton {
4245
transform: rotateY(180deg);
4346
unicode-bidi: bidi-override;
4447
direction: rtl;
45-
align-content: right;
48+
//align-content: right; // there is no align-content: right
4649
}
4750
4851
.config .wordCount .textButton,
@@ -52,8 +55,9 @@
5255
transform: rotateY(180deg);
5356
unicode-bidi: bidi-override;
5457
direction: rtl;
55-
align-content: right;
58+
//align-content: right; // there is no align-content: right
5659
}
60+
*/
5761

5862
[data-nav-item] {
5963
color: var(--bg-color);

frontend/static/themes/moonlight.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ header[data-focused] {
1212
[data-nav-item="leaderboards"],
1313
[data-nav-item="about"],
1414
[data-nav-item="settings"] {
15-
border-radius: rem !important;
15+
/* border-radius: rem !important; this is doing nothing */
1616
color: #191f28 !important;
1717
background: #c69f68;
1818
&:hover {
19-
border-radius: rem !important;
19+
/* border-radius: rem !important; this is doing nothing */
2020
color: #4b5975 !important;
2121
transition: 0.25s;
2222
}

stylelint.config.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export default {
1414
], //default: true
1515

1616
"at-rule-no-unknown": null, // consider adding
17-
"declaration-property-value-no-unknown": null, // add
1817
"selector-type-no-unknown": null, // add // default: [true, {ignore: ['custom-elements'],},]
1918

2019
"length-zero-no-unit": null, // default: [true, {ignore: ['custom-properties'], ignorePreludeOfAtRules: ['function', 'mixin'],},]

0 commit comments

Comments
 (0)