Skip to content

Commit

Permalink
Make anchor highlighting more prominent
Browse files Browse the repository at this point in the history
  • Loading branch information
weltenwort committed Dec 16, 2016
1 parent 46d8472 commit 3ae8a5d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion src/core_plugins/kibana/public/discover/styles/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,16 @@
}

.discover-table-row--highlight {
font-weight: bold;
font-weight: 900;
outline: 3px solid @table-border-color;

td {
border-top: none !important;
}
}

.discover-table-togglefield--highlight {
background: @table-border-color;
}

.shard-failures {
Expand Down
4 changes: 2 additions & 2 deletions src/ui/public/doc_table/components/table_row/open.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<td ng-click="toggleRow()">
<td ng-click="toggleRow()" ng-class="{'discover-table-togglefield--highlight': row['$$_isAnchor']}">
<i
class="fa discover-table-open-icon"
ng-class="{ 'fa-caret-down': open, 'fa-caret-right': !open }">
</i>
</td>
</td>

0 comments on commit 3ae8a5d

Please sign in to comment.