From 94d5ba45506b8cf3330bb760310aa8783743ea4d Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Tue, 5 Oct 2021 11:25:35 +0100 Subject: [PATCH] Tweak table styles --- .../editor-client/src/sass/tab-info.scss | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/packages/node_modules/@node-red/editor-client/src/sass/tab-info.scss b/packages/node_modules/@node-red/editor-client/src/sass/tab-info.scss index fcbc020f9..2b95c4910 100644 --- a/packages/node_modules/@node-red/editor-client/src/sass/tab-info.scss +++ b/packages/node_modules/@node-red/editor-client/src/sass/tab-info.scss @@ -235,29 +235,23 @@ div.red-ui-info-table { } table { border-collapse: collapse; + border: 1px solid var(--red-ui-secondary-border-color); margin : 8px 0 8px 0; min-width : 300px; - box-shadow : 0 0 2px rgb(0 0 0 / 15%); overflow : hidden; - border-radius : 4px; } table thead tr { - background-color: var(--red-ui-primary-text-color); //$primary-text-color; - color: var(--red-ui-primary-background); //$primary-background + background-color: var(--red-ui-primary-background); //$primary-text-color; + border-bottom: 1px solid var(--red-ui-secondary-border-color); + color: var(--red-ui-header-text-color); text-align: left; } table th, table td { padding: 6px 8px; } - table tbody tr { - border-bottom: 1px solid var(--red-ui-tertiary-background); //$tertiary-background - } table tbody tr:nth-of-type(even) { - background-color: var(--red-ui-primary-background); //$primary-background; - } - table tbody tr:last-of-type { - border-bottom: 2px solid var(--red-ui-primary-text-color); //$primary-text-color; + background-color: var(--red-ui-tertiary-background); //$primary-background; } } .red-ui-sidebar-info-stack {