Fix li element list-style-type

The tooltip was showing a bullet point for an `li` element which was showing up on the outside of the tooltip box. Setting the list-style-type to none removes this bullet point and makes the tooltip look a lot cleaner.
This commit is contained in:
Lev Lazinskiy 2016-06-06 14:54:28 -07:00
parent 3e686f99b5
commit 3ac46e4c20
1 changed files with 4 additions and 0 deletions

View File

@ -68,6 +68,10 @@ div.ui-tooltip {
margin-bottom: 0px;
}
.ui-tooltip li {
list-style-type: none;
}
.tooltip .fa-info-circle {
color: #999;
font-size: 0.95em;