mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
add comments
This commit is contained in:
parent
9551029a3a
commit
e162049845
1 changed files with 9 additions and 3 deletions
|
@ -1,13 +1,19 @@
|
|||
@import (reference) "~ui/styles/variables";
|
||||
|
||||
/**
|
||||
* 1. Stack content vertically so the table can scroll when its constrained by a fixed container height.
|
||||
*/
|
||||
doc-table {
|
||||
overflow: auto;
|
||||
flex: 1 1 100%;
|
||||
flex-direction: column;
|
||||
flex-direction: column; /* 1 */
|
||||
|
||||
/**
|
||||
* 1. Allow user to scroll table when its constrained by a fixed container height.
|
||||
*/
|
||||
.doc-table-container {
|
||||
flex: 1 1 0;
|
||||
overflow: auto;
|
||||
flex: 1 1 0; /* 1 */
|
||||
overflow: auto; /* 1 */
|
||||
}
|
||||
|
||||
.discover-table-datafield {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue