From e1f3b19c0cbd16efb6eb1d933aa89aa3221983a6 Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Mon, 3 Dec 2018 20:31:08 -0800 Subject: [PATCH] Ensure Selectboxes in Notebook Toolbar have Minimum Size (#3393) * Setting minimum width on selectboxes in notebook toolbar * Fix spacing --- src/sql/parts/notebook/notebook.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/sql/parts/notebook/notebook.css b/src/sql/parts/notebook/notebook.css index 155981d051..7fc78e1d80 100644 --- a/src/sql/parts/notebook/notebook.css +++ b/src/sql/parts/notebook/notebook.css @@ -36,6 +36,10 @@ font-size: 13px; } +.notebookEditor .monaco-select-box { + min-width: 150px; +} + .notebookEditor .notebook-button.icon-add{ background-image: url("./media/light/add.svg"); }