Safari :hover issue

Hover state stays :hover when moving from down to up over the tooltips.

by Chris Rebert

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<div class="x">
  <h4>
    John doe 1
    <span class="glyphicon glyphicon-star pull-right" data-toggle="tooltip" data-placement="top" title="Reset users password"></span>
      </h4>
</div>
<div class="x">
  <h4>
    John doe 2
    <span class="glyphicon glyphicon-star pull-right" data-toggle="tooltip" data-placement="top" title="Reset users password"></span>
      </h4>
</div>
<div class="x">
  <h4>
    John doe 3
    <span class="glyphicon glyphicon-star pull-right" data-toggle="tooltip" data-placement="top" title="Reset users password"></span>
      </h4>
</div>
<div class="x">
  <h4>
    John doe 4
    <span class="glyphicon glyphicon-star pull-right" data-toggle="tooltip" data-placement="top" title="Reset users password"></span>
      </h4>
</div>
<div class="x">
  <h4>
    John doe 5
    <span class="glyphicon glyphicon-star pull-right" data-toggle="tooltip" data-placement="top" title="Reset users password"></span>
      </h4>
</div>
<div class="x">
  <h4>
    John doe 6
    <span class="glyphicon glyphicon-star pull-right" data-toggle="tooltip" data-placement="top" title="Reset users password"></span>
  </h4>
</div>
<div class="x">
  <h4>
    John doe 7
    <span class="glyphicon glyphicon-star pull-right" data-toggle="tooltip" data-placement="top" title="Reset users password"></span>
  </h4>
</div>
<div class="x">
  <h4>
    John doe 8
    <span class="glyphicon glyphicon-star pull-right" data-toggle="tooltip" data-placement="top" title="Reset users password"></span>
  </h4>
</div>

CSS

.x {
  background-color: #EDEDED;
}

.x:hover {
  background-color: lightblue;
}

JavaScript

$(function() {
  $('[data-toggle="tooltip"]').tooltip()
})