ui: Small CSS tweaks (#7808)

1. Reinstate top border on in page tabs
2. Keep overflow:hidden just for dom-recycling-tables
pull/7344/head
John Cowen 2020-05-07 18:42:00 +01:00 committed by John Cowen
parent 1743da62d7
commit 7e83dc2aeb
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
%tab-nav {
border-top: $decor-border-200;
border-color: $gray-200;
}
%tab-nav ul { %tab-nav ul {
list-style-type: none; list-style-type: none;
} }

View File

@ -6,6 +6,9 @@
} }
%dom-recycling-table tr > * { %dom-recycling-table tr > * {
flex: 1 0 auto; 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 { %dom-recycling-table tbody {
/* important required as ember-collection will inline an overflow: visible*/ /* important required as ember-collection will inline an overflow: visible*/