DEV: Fix unwanted stylelint changes, do cleanup (#31140)

This commit is contained in:
Jarek Radosz 2025-02-03 22:05:22 +01:00 committed by GitHub
parent ab4ca0be6e
commit 0ad05e022f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 9 additions and 14 deletions

View File

@ -15,7 +15,6 @@ $calendar-icon: '<svg xmlns="http://www.w3.org/2000/svg" width="14px" height="16
box-shadow: none;
position: relative;
&::input-placeholder,
&::input-placeholder,
&::placeholder {
font-size: var(--font-0);

View File

@ -74,7 +74,6 @@ html.footer-nav-visible {
background-color: rgba(var(--header_background-rgb), 0.7);
/* prefix needed for iOS < 18 */
/* stylelint-disable-next-line property-no-vendor-prefix */
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
}

View File

@ -10,7 +10,7 @@
html {
line-height: 1.15; /* 1 */
text-size-adjust: 100%; /* 2 */
-webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections

View File

@ -1,7 +1,7 @@
/* ----------------------------------------------
* Generated by Animista on 2023-7-17 8:32:34
* Licensed under FreeBSD License.
* See http://animista.net/license for more info.
* See http://animista.net/license for more info.
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
@ -19,12 +19,3 @@
transform: rotate(360deg);
}
}
@keyframes rotate-center {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}

View File

@ -32,6 +32,8 @@
}
&:focus {
/* stylelint-disable-next-line declaration-block-no-duplicate-properties */
outline: 5px auto Highlight;
outline: 5px auto -webkit-focus-ring-color;
}

View File

@ -46,7 +46,11 @@ export default {
"property-no-vendor-prefix": [
true,
{
ignoreProperties: ["user-select"],
ignoreProperties: [
"backdrop-filter",
"text-size-adjust",
"user-select",
],
},
],
},