open-consul/ui-v2/app/styles/components/dom-recycling-table/layout.scss
John Cowen 2eb34e07ea ui: Small CSS tweaks (#7808)
1. Reinstate top border on in page tabs
2. Keep overflow:hidden just for dom-recycling-tables
2020-05-12 17:14:47 +00:00

23 lines
544 B
SCSS

%dom-recycling-table {
position: relative;
}
%dom-recycling-table tr {
display: flex;
}
%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*/
overflow-x: hidden !important;
}
%dom-recycling-table dd {
flex-wrap: nowrap;
}
%dom-recycling-table dd > * {
margin-bottom: 0;
}