Commit 56bb92ac authored by Mark Otto's avatar Mark Otto
Browse files

Fixes #14386: Reset font, text, and line-height properties in popovers

parent 3c0e2e28
Showing with 9 additions and 6 deletions
+9 -6
...@@ -5692,6 +5692,9 @@ button.close { ...@@ -5692,6 +5692,9 @@ button.close {
display: none; display: none;
max-width: 276px; max-width: 276px;
padding: 1px; padding: 1px;
font-size: 14px;
font-weight: normal;
line-height: 1.42857143;
text-align: left; text-align: left;
white-space: normal; white-space: normal;
background-color: #fff; background-color: #fff;
...@@ -5719,8 +5722,6 @@ button.close { ...@@ -5719,8 +5722,6 @@ button.close {
padding: 8px 14px; padding: 8px 14px;
margin: 0; margin: 0;
font-size: 14px; font-size: 14px;
font-weight: normal;
line-height: 18px;
background-color: #f7f7f7; background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb; border-bottom: 1px solid #ebebeb;
border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0;
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -11,7 +11,11 @@ ...@@ -11,7 +11,11 @@
display: none; display: none;
max-width: @popover-max-width; max-width: @popover-max-width;
padding: 1px; padding: 1px;
text-align: left; // Reset given new insertion method // Reset font and text propertes given new insertion method
font-size: @font-size-base;
font-weight: normal;
line-height: @line-height-base;
text-align: left;
background-color: @popover-bg; background-color: @popover-bg;
background-clip: padding-box; background-clip: padding-box;
border: 1px solid @popover-fallback-border-color; border: 1px solid @popover-fallback-border-color;
...@@ -33,8 +37,6 @@ ...@@ -33,8 +37,6 @@
margin: 0; // reset heading margin margin: 0; // reset heading margin
padding: 8px 14px; padding: 8px 14px;
font-size: @font-size-base; font-size: @font-size-base;
font-weight: normal;
line-height: 18px;
background-color: @popover-title-bg; background-color: @popover-title-bg;
border-bottom: 1px solid darken(@popover-title-bg, 5%); border-bottom: 1px solid darken(@popover-title-bg, 5%);
border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0; border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;
......
Supports Markdown
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