From c944a495e4071429094728ba935588f5dcdeb7ca Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Sun, 26 Dec 2021 16:58:39 +0100 Subject: [PATCH] Styling (fix #7) --- styles/REPL/REPLComplete.module.css | 14 ++++++++++++++ styles/REPL/REPLHistory.module.css | 5 +++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/styles/REPL/REPLComplete.module.css b/styles/REPL/REPLComplete.module.css index d036618..814baf8 100644 --- a/styles/REPL/REPLComplete.module.css +++ b/styles/REPL/REPLComplete.module.css @@ -3,4 +3,18 @@ display: flex; flex-direction: column; flex-grow: 2; +} + +.container::-webkit-scrollbar { + width:auto; +} + +/*track*/ +.container::-webkit-scrollbar-track { +background:rgb(0, 0, 0); +} + +/*thumb*/ +.container::-webkit-scrollbar-thumb { +background:rgb(24, 138, 24); } \ No newline at end of file diff --git a/styles/REPL/REPLHistory.module.css b/styles/REPL/REPLHistory.module.css index b7d51b1..ebaa18f 100644 --- a/styles/REPL/REPLHistory.module.css +++ b/styles/REPL/REPLHistory.module.css @@ -15,13 +15,13 @@ } .line a:link, .line a:visited, .line a:hover, .line a:active { - color: inherit; + color: var(--repl-color-link); text-decoration: underline; } .line a::after { content: "⤤"; - color: var(--repl-color); + color: var(--repl-color-link); font-size: 80%; text-decoration: none; } @@ -29,6 +29,7 @@ .line .cmd { cursor: pointer; text-decoration: underline dotted; + color: var(--repl-color-link); } .line .cmd::before {content: "'"}