update tooltip styling to bootstrap

This commit is contained in:
Karen Bradshaw
2020-10-05 12:01:39 -04:00
parent 9e01fb5560
commit be9e8e9ad8
6 changed files with 26 additions and 69 deletions
+7
View File
@@ -552,3 +552,10 @@ body.td-documentation {
}
}
/* glossary tooltip */
.glossary-tooltip {
display: inline-block;
border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
color: black;
text-decoration: none !important;
}
+13 -1
View File
@@ -12,4 +12,16 @@ Add styles or override variables from the theme here. */
@import "tablet";
@import "desktop";
$primary: #3371e3;
$primary: #3371e3;
// tooltip
$tooltip-bg: #555;
$tooltip-arrow-color: $tooltip-bg !default;
$tooltip-arrow-width: 10px !default;
$tooltip-opacity: 1 !default;
$tooltip-color: #fff !default;
$tooltip-max-width: 300px !default;
$tooltip-font-size: 1rem;
$tooltip-padding: 5px 8px;
$tooltip-border-radius: 6px;
$tooltip-font-weight: 400;