manual lint --fix

This commit is contained in:
Henry Jameson 2025-03-31 12:48:53 +03:00
commit f6a2d1bdd6
7 changed files with 16 additions and 9 deletions

View file

@ -56,7 +56,7 @@
.post-textarea { .post-textarea {
resize: vertical; resize: vertical;
height: 10em; height: 10em;
overflow: none; overflow: visible;
box-sizing: content-box; box-sizing: content-box;
} }
} }

View file

@ -209,7 +209,7 @@ export default {
.assists { .assists {
grid-area: assists; grid-area: assists;
display: grid; display: grid;
grid-auto-flow: rows; grid-auto-flow: row;
grid-auto-rows: 2em; grid-auto-rows: 2em;
grid-gap: 0.5em; grid-gap: 0.5em;
} }

View file

@ -106,7 +106,6 @@
flex-direction: column; flex-direction: column;
justify-content: flex-end; justify-content: flex-end;
grid-template-columns: 1fr; grid-template-columns: 1fr;
grid-auto-columns: none;
grid-auto-rows: auto; grid-auto-rows: auto;
grid-auto-flow: row dense; grid-auto-flow: row dense;

View file

@ -77,7 +77,7 @@
.hidden { .hidden {
display: none; display: none;
visibility: "hidden"; visibility: hidden;
} }
} }
</style> </style>

View file

@ -157,7 +157,13 @@
linear-gradient(to top, white, white); linear-gradient(to top, white, white);
/* Autoprefixed seem to ignore this one, and also syntax is different */ /* Autoprefixed seem to ignore this one, and also syntax is different */
/* stylelint-disable mask-composite */
/* stylelint-disable declaration-property-value-no-unknown */
/* TODO check if this is still needed */
mask-composite: xor; mask-composite: xor;
/* stylelint-enable declaration-property-value-no-unknown */
/* stylelint-enable mask-composite */
mask-composite: exclude; mask-composite: exclude;
} }
} }

View file

@ -68,10 +68,12 @@
margin: 0.5em 0 0; margin: 0.5em 0 0;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
word-break: break-word; word-break: break-all;
line-height: 1.2em; line-height: 1.2em;
// cap description at 3 lines, the 1px is to clean up some stray pixels
// TODO: fancier fade-out at the bottom to show off that it's too long? /* cap description at 3 lines, the 1px is to clean up some stray pixels
TODO: fancier fade-out at the bottom to show off that it's too long?
*/
max-height: calc(1.2em * 3 - 1px); max-height: calc(1.2em * 3 - 1px);
} }

View file

@ -223,7 +223,7 @@
.userlist-placeholder { .userlist-placeholder {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: middle; align-items: center;
padding: 2em; padding: 2em;
} }
} }
@ -232,7 +232,7 @@
.panel-body { .panel-body {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: middle; align-items: center;
padding: 7em; padding: 7em;
} }
} }