From 3ac46e4c2028a3b1f6fbbf6c7f0bb5e33186aee8 Mon Sep 17 00:00:00 2001 From: Lev Lazinskiy Date: Mon, 6 Jun 2016 14:54:28 -0700 Subject: 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. --- assets/css/src/tooltip.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'assets') diff --git a/assets/css/src/tooltip.css b/assets/css/src/tooltip.css index 5fe56f8b..8b6551fa 100644 --- a/assets/css/src/tooltip.css +++ b/assets/css/src/tooltip.css @@ -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; -- cgit v1.2.3