Commit f6b50f5d by Mike Bifulco

Bug fix for TNL-406

TNL-406: Long component title causes horizontal scroll
updated the SASS file to address the horizontal scroll issue in long
component titles’ hover bubble.
parent c7aa6986
...@@ -201,18 +201,19 @@ nav.sequence-nav { ...@@ -201,18 +201,19 @@ nav.sequence-nav {
color: #fff; color: #fff;
font-family: $sans-serif; font-family: $sans-serif;
line-height: lh(); line-height: lh();
left: 0px; right: 0px;
opacity: 0.0; opacity: 0.0;
padding: 6px; padding: 6px;
position: absolute; position: absolute;
top: 48px; top: 48px;
text-shadow: 0 -1px 0 #000; text-shadow: 0 -1px 0 #000;
@include transition(all .1s $ease-in-out-quart 0s); @include transition(all .1s $ease-in-out-quart 0s);
white-space: pre; white-space: normal;
z-index: 99; z-index: 99;
visibility: hidden; visibility: hidden;
pointer-events: none; pointer-events: none;
&:empty { &:empty {
background: none; background: none;
...@@ -226,7 +227,7 @@ nav.sequence-nav { ...@@ -226,7 +227,7 @@ nav.sequence-nav {
content: " "; content: " ";
display: block; display: block;
height: 10px; height: 10px;
left: 18px; right: 18px;
position: absolute; position: absolute;
top: -5px; top: -5px;
@include transform(rotate(45deg)); @include transform(rotate(45deg));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment