mirror of https://github.com/ColorlibHQ/AdminLTE
Fixed issue with fade class becoming unresponsive via TeamViewer
Fixed issue with fade class becoming unresponsive via TeamViewer: https://github.com/ColorlibHQ/AdminLTE/issues/5872pull/5868/head
parent
9b4193e44e
commit
862cc0defb
|
@ -38,3 +38,4 @@ TODO
|
|||
test.html
|
||||
ad.js
|
||||
/.cache/
|
||||
CLAUDE.md
|
||||
|
|
|
@ -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
|
@ -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
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue