Skip to content

Commit 862cc0d

Browse files
committed
Fixed issue with fade class becoming unresponsive via TeamViewer
Fixed issue with fade class becoming unresponsive via TeamViewer: #5872
1 parent 9b4193e commit 862cc0d

10 files changed

+28
-12
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,4 @@ TODO
3838
test.html
3939
ad.js
4040
/.cache/
41+
CLAUDE.md

dist/css/adminlte.css

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.rtl.css

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.rtl.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.rtl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.rtl.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/scss/_accessibility.scss

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,18 @@
6868
}
6969

7070
.fade {
71-
display: block;
71+
opacity: 1 !important;
72+
/* stylelint-disable-next-line property-disallowed-list */
73+
transition: none !important;
7274
}
7375

7476
.collapse {
75-
display: block;
77+
/* stylelint-disable-next-line property-disallowed-list */
78+
transition: none !important;
79+
}
80+
81+
.modal.fade .modal-dialog {
82+
transform: none !important;
7683
}
7784
}
7885

0 commit comments

Comments
 (0)