Commit 85f2be44 by Brian Talbot

studio - resolves line-height issue that core typography settings creates with tooltip rendering

parent f856b69a
...@@ -801,7 +801,8 @@ hr.divide { ...@@ -801,7 +801,8 @@ hr.divide {
} }
.tooltip { .tooltip {
@extend .t-copy-sub2; @include font-size(12);
@include transition(opacity 0.1s ease-out);
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
...@@ -811,10 +812,9 @@ hr.divide { ...@@ -811,10 +812,9 @@ hr.divide {
background: rgba(0, 0, 0, 0.85); background: rgba(0, 0, 0, 0.85);
font-weight: normal; font-weight: normal;
line-height: 26px; line-height: 26px;
color: #fff; color: $white;
pointer-events: none; pointer-events: none;
opacity: 0; opacity: 0;
@include transition(opacity 0.1s ease-out);
&:after { &:after {
content: '▾'; content: '▾';
......
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