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:
parent
3e686f99b5
commit
3ac46e4c20
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue