Commit 2862c303 authored by Mark Otto's avatar Mark Otto

Fixes #15046: Add full font overrides for popovers and tooltips

parent d904429e
...@@ -5623,7 +5623,9 @@ button.close { ...@@ -5623,7 +5623,9 @@ button.close {
position: absolute; position: absolute;
z-index: 1070; z-index: 1070;
display: block; display: block;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px; font-size: 12px;
font-weight: normal;
line-height: 1.4; line-height: 1.4;
visibility: visible; visibility: visible;
filter: alpha(opacity=0); filter: alpha(opacity=0);
...@@ -5729,6 +5731,7 @@ button.close { ...@@ -5729,6 +5731,7 @@ button.close {
display: none; display: none;
max-width: 276px; max-width: 276px;
padding: 1px; padding: 1px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px; font-size: 14px;
font-weight: normal; font-weight: normal;
line-height: 1.42857143; line-height: 1.42857143;
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
...@@ -5623,7 +5623,9 @@ button.close { ...@@ -5623,7 +5623,9 @@ button.close {
position: absolute; position: absolute;
z-index: 1070; z-index: 1070;
display: block; display: block;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px; font-size: 12px;
font-weight: normal;
line-height: 1.4; line-height: 1.4;
visibility: visible; visibility: visible;
filter: alpha(opacity=0); filter: alpha(opacity=0);
...@@ -5729,6 +5731,7 @@ button.close { ...@@ -5729,6 +5731,7 @@ button.close {
display: none; display: none;
max-width: 276px; max-width: 276px;
padding: 1px; padding: 1px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px; font-size: 14px;
font-weight: normal; font-weight: normal;
line-height: 1.42857143; line-height: 1.42857143;
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
max-width: @popover-max-width; max-width: @popover-max-width;
padding: 1px; padding: 1px;
// Reset font and text propertes given new insertion method // Reset font and text propertes given new insertion method
font-family: @font-family-base;
font-size: @font-size-base; font-size: @font-size-base;
font-weight: normal; font-weight: normal;
line-height: @line-height-base; line-height: @line-height-base;
......
...@@ -9,7 +9,10 @@ ...@@ -9,7 +9,10 @@
z-index: @zindex-tooltip; z-index: @zindex-tooltip;
display: block; display: block;
visibility: visible; visibility: visible;
// Reset font and text propertes given new insertion method
font-family: @font-family-base;
font-size: @font-size-small; font-size: @font-size-small;
font-weight: normal;
line-height: 1.4; line-height: 1.4;
.opacity(0); .opacity(0);
......
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