Skip to content

Commit

Permalink
Fix selenium tests by avoiding newline created by block element
Browse files Browse the repository at this point in the history
  • Loading branch information
Bargs committed Jan 31, 2017
1 parent 86c1862 commit 88a9c0d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/ui/public/doc_table/doc_table.less
Expand Up @@ -27,12 +27,12 @@ doc-table {
background-color: @panel-bg;
white-space: nowrap;
right: 0;
visibility: hidden;
display: none;
}

&:hover {
.table-cell-filter {
visibility: visible;
display: inline;
}
}
}
Expand All @@ -58,6 +58,7 @@ doc-table {
.docTableRowFilterIcon {
font-size: 14px;
line-height: 1; /* 1 */
display: inline;

& + & {
margin-left: 5px;
Expand Down
4 changes: 2 additions & 2 deletions src/ui/public/styles/base.less
Expand Up @@ -498,7 +498,7 @@ style-compile {
white-space: nowrap;
right: 0;
top: 5px;
visibility: hidden;
display: none;
}
}

Expand All @@ -509,7 +509,7 @@ style-compile {

.cell-hover:hover {
.table-cell-filter {
visibility: visible;
display: inline;
}

.cell-hover-show {
Expand Down

0 comments on commit 88a9c0d

Please sign in to comment.