Skip to content

Commit 2b7fed4

Browse files
Merge pull request #4303 from IgorA100/patch-93
Fix: "Pale moon" browser does not understand overflow: hidden auto; (skin.css)
2 parents 7def6f8 + d557a65 commit 2b7fed4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

web/skins/classic/css/base/skin.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,9 @@ ul.tabList li.active a {
287287
display: flex;
288288
flex-direction: column;
289289
width: 100%;
290-
overflow: hidden auto;
290+
/*"Pale moon" browser does not understand overflow: hidden auto;*/
291+
overflow-x: hidden;
292+
overflow-y: auto;
291293
margin: 0 auto 0 auto;
292294
line-height: 130%;
293295
text-align: center;
@@ -1267,4 +1269,3 @@ button.btn.btn-view-watch:hover {
12671269
visibility: hidden;
12681270
}
12691271
/* --- This block should always be located at the end! */
1270-

0 commit comments

Comments
 (0)