Fix for tooltips on badge #2167

Merged
Gusted merged 3 commits from Tooltip-Patch into master 2020-12-29 13:25:10 +00:00

View File

@ -411,6 +411,9 @@ input#nav-toggle,
[data-toggle="tooltip"] { [data-toggle="tooltip"] {
cursor: pointer; cursor: pointer;
position: relative; position: relative;
}
[data-toggle="tooltip"]:hover {
z-index: 1337; z-index: 1337;
} }
@ -428,6 +431,7 @@ input#nav-toggle,
content: attr(data-original-title); content: attr(data-original-title);
color: #fff; color: #fff;
font-size: 14px; font-size: 14px;
font-weight: normal;
left: 50%; left: 50%;
line-height: 1.2; line-height: 1.2;
margin-bottom: 5px; margin-bottom: 5px;
@ -435,6 +439,7 @@ input#nav-toggle,
padding: 7px; padding: 7px;
position: absolute; position: absolute;
text-align: center; text-align: center;
white-space: break-spaces;
width: 200px; width: 200px;
} }