New Tooltips for Thread Views Using Bootstrap

Hi,

Well, I changed the descriptions for threads to use Bootstrap's UI and here is the results (make sure you set your YT setting for 1080 HD):

New Tooltip for UNIX.COM Using Bootstrap - YouTube

Here is the simple CSS I'm using for the fonts and colors:

.tooltip-inner {
    background-color: rgb(7, 17, 86)!important;
    font-size: 0.8em !important;
    text-align: left !important;
}

Here is the simple jQuery with tooltip options:

 $('.neo-threadbit').tooltip({
     animation:true,
     placement:'auto',
     delay:{ "show": 800, "hide": 100 }});

Using these libs::

<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" </script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" </script>
1 Like