Fixed issue with fade class becoming unresponsive via TeamViewer

Fixed issue with fade class becoming unresponsive via TeamViewer: https://github.com/ColorlibHQ/AdminLTE/issues/5872
pull/5868/head
Aigars Silkalns 2025-07-10 08:40:27 +03:00
parent 9b4193e44e
commit 862cc0defb
10 changed files with 28 additions and 12 deletions

1
.gitignore vendored
View File

@ -38,3 +38,4 @@ TODO
test.html
ad.js
/.cache/
CLAUDE.md

View File

@ -15364,10 +15364,14 @@ html.maximized-card {
scroll-behavior: auto !important;
}
.fade {
display: block;
transition: none !important;
opacity: 1 !important;
}
.collapse {
display: block;
transition: none !important;
}
.modal.fade .modal-dialog {
transform: none !important;
}
}
/* Screen Reader Only Content */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -15338,10 +15338,14 @@ html.maximized-card {
scroll-behavior: auto !important;
}
.fade {
display: block;
transition: none !important;
opacity: 1 !important;
}
.collapse {
display: block;
transition: none !important;
}
.modal.fade .modal-dialog {
transform: none !important;
}
}
/* Screen Reader Only Content */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -68,11 +68,18 @@
}
.fade {
display: block;
opacity: 1 !important;
/* stylelint-disable-next-line property-disallowed-list */
transition: none !important;
}
.collapse {
display: block;
/* stylelint-disable-next-line property-disallowed-list */
transition: none !important;
}
.modal.fade .modal-dialog {
transform: none !important;
}
}