From 9aa87b155d96d2297396b8a4a6a9f03a0004270c Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 1 Dec 2020 12:37:04 -0600 Subject: [PATCH] Add a little shadow to windows/unix shell --- app/fg/shell-window/tabs.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/fg/shell-window/tabs.js b/app/fg/shell-window/tabs.js index 9b89e30066..430790b829 100644 --- a/app/fg/shell-window/tabs.js +++ b/app/fg/shell-window/tabs.js @@ -392,6 +392,10 @@ ${spinnerCSS} height: 34px; } +.shell:not(.darwin) { + box-shadow: inset 0 2px 4px #0001; +} + .tabs { display: flex; padding: 0 18px 0 0; @@ -450,7 +454,7 @@ ${spinnerCSS} height: 30px; width: 200px; min-width: 0; /* HACK: https://stackoverflow.com/questions/38223879/white-space-nowrap-breaks-flexbox-layout */ - background: var(--bg-color--background); + background: transparent; transition: background 0.3s; border-left: 1px solid var(--border-color--tab); }