From b40a25eaa4900e3c1f3b84fcc853a7caad374635 Mon Sep 17 00:00:00 2001 From: Devin Howard Date: Wed, 11 Jan 2017 21:40:11 -0500 Subject: [PATCH] fix tooltip display --- app/assets/stylesheets/application.scss.erb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/app/assets/stylesheets/application.scss.erb b/app/assets/stylesheets/application.scss.erb index 6788129e..35665918 100644 --- a/app/assets/stylesheets/application.scss.erb +++ b/app/assets/stylesheets/application.scss.erb @@ -2059,6 +2059,17 @@ and it won't be important on password protected instances */ width: 32px; height: 32px; + & > span { + bottom: -9px; + right: 3px; + font-size: 10px; + color: #eee; + + &:hover { + color: white; + } + } + .tooltip { display: none; } @@ -2068,6 +2079,12 @@ and it won't be important on password protected instances */ .tooltip { display: block; + position: absolute; + bottom: 30px; + background: black; + color: white; + border-radius: 2px; + padding: 3px 5px 2px 5px; } } }