mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
9d21736e9f
* Add copyright headers to UI files * Ensure copywrite file ignores external libs
28 lines
623 B
SCSS
28 lines
623 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
%dom-recycling-table {
|
|
position: relative;
|
|
}
|
|
%dom-recycling-table tr {
|
|
display: flex;
|
|
}
|
|
%dom-recycling-table tr > * {
|
|
flex: 1 0 auto;
|
|
/* this means no simple CSS driven 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;
|
|
}
|