From 07069a64ae3f68204a8a53eefa5039ec78b83fd4 Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Tue, 4 Dec 2018 19:21:55 -0800 Subject: [PATCH] Tweak notebook cell box shadow/border-width (#3454) --- src/sql/parts/notebook/notebookStyles.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sql/parts/notebook/notebookStyles.ts b/src/sql/parts/notebook/notebookStyles.ts index 82a1aafa07..3f7bf648d9 100644 --- a/src/sql/parts/notebook/notebookStyles.ts +++ b/src/sql/parts/notebook/notebookStyles.ts @@ -16,7 +16,8 @@ registerThemingParticipant((theme: ITheme, collector: ICssStyleCollector) => { collector.addRule(` .notebookEditor .notebook-cell.active { border-color: ${activeBorder}; - border-width: 2px; + border-width: 1px; + box-shadow: 0px 4px 6px 0px rgba(0,0,0,0.14); } `); }