Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit f2942e6

Browse files
committed
Merge pull request #10592 from adobe/prafulVaishnav/fix-10175
Temporary Fix for weird project tree scrollbar on Mac
2 parents 6ef97d3 + 7b02723 commit f2942e6

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/styles/brackets_scrollbars.less

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,17 @@
2121
*
2222
*/
2323

24+
/* Temporary fix for issue#10150 for weird project tree scrollbar behaviour on mac. Scrollbar not appearing on hover. Forcing the project tree div to render displays the scrollbar. So setting transparent background color of div on hover.
25+
*/
26+
27+
.platform-mac
28+
{
29+
.open-files-container:hover,
30+
#project-files-container:hover {
31+
background-color: rgba(128, 128, 128, 0);
32+
}
33+
}
34+
2435
/* Temporary implementation of unobtrusive scrollbars.
2536
FUTURE: These currently rely on nonstandard WebKit styles, and don't have all the right behavior.
2637
Longer-term, we'll need to implement custom scrollbars. */

0 commit comments

Comments
 (0)