diff options
author | Lev Lazinskiy <lev@circleci.com> | 2016-06-06 14:54:28 -0700 |
---|---|---|
committer | Lev Lazinskiy <lev@circleci.com> | 2016-06-06 14:54:28 -0700 |
commit | 3ac46e4c2028a3b1f6fbbf6c7f0bb5e33186aee8 (patch) | |
tree | bea52b1a230611eab436a12d1bde98a50138f262 /assets | |
parent | 3e686f99b5f69e5c4ff2ba480a14bccf2c9e55a9 (diff) |
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.
Diffstat (limited to 'assets')
-rw-r--r-- | assets/css/src/tooltip.css | 4 |
1 files changed, 4 insertions, 0 deletions
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; |