Redesign - fix visual regressions after font changes

[MAILPOET-2770]
This commit is contained in:
Ján Mikláš
2020-04-29 13:30:00 +02:00
committed by Veljko V
parent aa0abd37a2
commit a392ccdc16
3 changed files with 8 additions and 3 deletions

View File

@@ -41,6 +41,7 @@
h3, h3,
&:hover h3 { &:hover h3 {
color: $color-primary; color: $color-primary;
font-size: 18px;
margin: 0; margin: 0;
padding: 17px 20px; padding: 17px 20px;
text-transform: uppercase; text-transform: uppercase;

View File

@@ -1,5 +1,5 @@
.mailpoet_breadcrumb { .mailpoet_breadcrumb {
color: #444; color: $color-text;
font-size: .9em; font-size: .9em;
text-transform: uppercase; text-transform: uppercase;
} }
@@ -9,10 +9,10 @@
} }
.mailpoet_breadcrumb a { .mailpoet_breadcrumb a {
color: #444; color: $color-text;
text-decoration: none; text-decoration: none;
} }
.mailpoet_breadcrumb a:hover { .mailpoet_breadcrumb a:hover {
color: darken(#444, 50%); color: darken($color-text, 50%);
} }

View File

@@ -58,3 +58,7 @@ p.sender_email_address_warning:first-child {
.select2-container .select2-search--inline .select2-search__field { .select2-container .select2-search--inline .select2-search__field {
max-width: 100%; max-width: 100%;
} }
.widefat {
margin-bottom: 20px;
}