Fix font color when deleting editor block

[MAILPOET-2723]
This commit is contained in:
Ján Mikláš
2020-03-02 10:27:21 +01:00
committed by Jack Kitterhing
parent c9c1b1fa92
commit 7b2eef18ad

View File

@@ -174,6 +174,24 @@ $column-icon-size-with-padding: 27px;
@include animation-fade-in-and-scale-horizontally();
}
.mailpoet_delete_block_confirm {
color: $warning-text-color;
&:hover {
color: $warning-text-color;
text-decoration: underline;
}
}
.mailpoet_delete_block_cancel {
color: $warning-alternate-text-color;
&:hover {
color: $warning-alternate-text-color;
text-decoration: underline;
}
}
}
.mailpoet_delete_block_activated {
@@ -199,21 +217,3 @@ $column-icon-size-with-padding: 27px;
margin-left: 3px;
}
}
.mailpoet_delete_block_confirm {
color: $warning-text-color;
&:hover {
color: $warning-text-color;
text-decoration: underline;
}
}
.mailpoet_delete_block_cancel {
color: $warning-alternate-text-color;
&:hover {
color: $warning-alternate-text-color;
text-decoration: underline;
}
}