keyframes

This commit is contained in:
Ludy87 2025-07-09 08:46:44 +02:00
parent 891b4b27d8
commit 6ffd0fc3a6
No known key found for this signature in database
GPG Key ID: 92696155E0220F94
5 changed files with 8 additions and 4 deletions

View File

@ -37,6 +37,7 @@
"comment-word-disallowed-list": null, "comment-word-disallowed-list": null,
"custom-property-pattern": null, "custom-property-pattern": null,
"no-descending-specificity": null, "no-descending-specificity": null,
"keyframes-name-pattern": null,
"@stylistic/declaration-block-trailing-semicolon": "always" "@stylistic/declaration-block-trailing-semicolon": "always"
} }
} }

View File

@ -71,7 +71,7 @@ body {
rgba(251, 7, 217, 1) 90%, rgba(251, 7, 217, 1) 90%,
rgba(255, 0, 0, 1) 100% rgba(255, 0, 0, 1) 100%
) !important; ) !important;
color: fff !important; color: #fff !important;
} }
.list-group-item { .list-group-item {
@ -89,7 +89,7 @@ body {
rgba(251, 7, 217, 1) 90%, rgba(251, 7, 217, 1) 90%,
rgba(255, 0, 0, 1) 100% rgba(255, 0, 0, 1) 100%
) !important; ) !important;
color: fff !important; color: #fff !important;
} }
#support-section { #support-section {

View File

@ -692,6 +692,7 @@ fieldset:disabled .btn {
.form-check > input:first-child:disabled + input[type="hidden"] + label::before { .form-check > input:first-child:disabled + input[type="hidden"] + label::before {
pointer-events: none; pointer-events: none;
cursor: default; cursor: default;
/* stylelint-disable-next-line declaration-property-value-no-unknown */
filter: alpha(opacity=65); filter: alpha(opacity=65);
-webkit-box-shadow: none; -webkit-box-shadow: none;
box-shadow: none; box-shadow: none;

View File

@ -8,6 +8,7 @@
.material-symbols-rounded { .material-symbols-rounded {
/* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
font-family: 'Material Symbols Rounded'; font-family: 'Material Symbols Rounded';
font-weight: 300; font-weight: 300;
font-style: normal; font-style: normal;
@ -20,5 +21,6 @@
word-wrap: normal; word-wrap: normal;
direction: ltr; direction: ltr;
-webkit-font-feature-settings: 'liga'; -webkit-font-feature-settings: 'liga';
font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
} }

View File

@ -60,7 +60,7 @@
} }
#PDFBug .stats { #PDFBug .stats {
font-family: courier; font-family: courier, monospace;
font-size: 10px; font-size: 10px;
white-space: pre; white-space: pre;
} }