mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Merge pull request #5841 from epixa/5831-fix-legend-ie11
Fix bug where legend wouldn't toggle in IE11
This commit is contained in:
commit
640668cdea
2 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ visualize-legend {
|
|||
.legend-ul {
|
||||
border-left: 1px solid @sidebar-bg;
|
||||
width: 150px;
|
||||
flex: 1 1 1px;
|
||||
flex: 1 1 auto;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
color: @legend-item-color;
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<div class="legend-value-container">
|
||||
<div
|
||||
ng-click="showDetails = !showDetails"
|
||||
ng-class="showDetails ? 'legend-value-full' : 'legend-value-truncate'"\
|
||||
ng-class="showDetails ? 'legend-value-full' : 'legend-value-truncate'"
|
||||
class="legend-value-title">
|
||||
<i class="fa fa-circle" ng-style="{color: getColor(legendData.label)}"></i> {{legendData.label}}
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue