Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stacey-gammon committed Feb 27, 2017
1 parent 9551029 commit e162049
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/ui/public/doc_table/doc_table.less
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down

0 comments on commit e162049

Please sign in to comment.