diff --git a/dashboard/static/css/style.css b/dashboard/static/css/style.css index c617605e9..5c9a2151b 100644 --- a/dashboard/static/css/style.css +++ b/dashboard/static/css/style.css @@ -385,3 +385,16 @@ a[href^="https://launchpad"]:after { .select2-results { max-height: 300px; } + +.ui-tooltip { + box-shadow: 0 0 5px #AAAAAA; + max-width: 300px; + padding: 8px; + position: absolute; + z-index: 9999; +} +body .ui-tooltip { + border-width: 2px; + background-color: white; + opacity: 0.8; +} diff --git a/dashboard/templates/layout.html b/dashboard/templates/layout.html index c4e45850b..71c429d13 100644 --- a/dashboard/templates/layout.html +++ b/dashboard/templates/layout.html @@ -25,6 +25,7 @@ + @@ -44,6 +45,9 @@ $(document).ready(function () { init_selectors(""); }); + $(function () { + $(document).tooltip(); + }); @@ -66,32 +70,32 @@