From a557a82b40d375caae8cee2d40d40aed150962cc Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Mon, 8 Aug 2016 10:22:19 -0700 Subject: [PATCH] Fix scrollbar being transparent on OS X --- src/xterm.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/xterm.css b/src/xterm.css index f18ef3d..8f2e43c 100644 --- a/src/xterm.css +++ b/src/xterm.css @@ -104,6 +104,8 @@ } .terminal .xterm-viewport { + /* On OS X this is required in order for the scroll bar to appear fully opaque */ + background-color: #000; overflow-y: scroll; }