From 7e83dc2aebc67af4af5772bd3645f5fdff449ff5 Mon Sep 17 00:00:00 2001 From: John Cowen Date: Thu, 7 May 2020 18:42:00 +0100 Subject: [PATCH] ui: Small CSS tweaks (#7808) 1. Reinstate top border on in page tabs 2. Keep overflow:hidden just for dom-recycling-tables --- ui-v2/app/styles/base/components/tabs/skin.scss | 4 ++++ ui-v2/app/styles/components/dom-recycling-table/layout.scss | 3 +++ 2 files changed, 7 insertions(+) diff --git a/ui-v2/app/styles/base/components/tabs/skin.scss b/ui-v2/app/styles/base/components/tabs/skin.scss index 7ad0caf074..b9b8ca2113 100644 --- a/ui-v2/app/styles/base/components/tabs/skin.scss +++ b/ui-v2/app/styles/base/components/tabs/skin.scss @@ -1,3 +1,7 @@ +%tab-nav { + border-top: $decor-border-200; + border-color: $gray-200; +} %tab-nav ul { list-style-type: none; } diff --git a/ui-v2/app/styles/components/dom-recycling-table/layout.scss b/ui-v2/app/styles/components/dom-recycling-table/layout.scss index cbaaf255e5..78186e67bd 100644 --- a/ui-v2/app/styles/components/dom-recycling-table/layout.scss +++ b/ui-v2/app/styles/components/dom-recycling-table/layout.scss @@ -6,6 +6,9 @@ } %dom-recycling-table tr > * { flex: 1 0 auto; + /* this means no simple CSS drive tooltips in dom-recycling tables */ + /* ideally the thing inside the td should be overflow hidden */ + overflow: hidden; } %dom-recycling-table tbody { /* important required as ember-collection will inline an overflow: visible*/