Fix tooltip font size
gr-tooltip was already using rems before recent font size changes. Because the root font size was originally larger, this inadvertantly shrunk the size of gr-tooltip-text. This is fixed by using one of the new canned font sizes. Change-Id: I7fc7c97a1e69c2ffbd6d25b601f099132c8e3013
This commit is contained in:
@@ -27,7 +27,7 @@ limitations under the License.
|
||||
background-color: var(--tooltip-background-color, #333);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
|
||||
color: #fff;
|
||||
font-size: .75rem;
|
||||
font-size: var(--font-size-small);
|
||||
position: absolute;
|
||||
z-index: 1000;
|
||||
max-width: var(--tooltip-max-width);
|
||||
|
||||
Reference in New Issue
Block a user