Set input inline border radius as !important

We need to override Shapely theme's !important rule
[MAILPOET-2810]
This commit is contained in:
Rostislav Wolny
2020-08-12 12:43:51 +02:00
committed by Veljko V
parent 37c8eb2146
commit 1c1d9d7037
2 changed files with 5 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ class BlockStylesRenderer {
$rules[] = "border-style:solid;";
}
if (isset($styles['border_radius'])) {
$rules[] = "border-radius:" . intval($styles['border_radius']) . "px;";
$rules[] = "border-radius:" . intval($styles['border_radius']) . "px !important;";
}
if (isset($styles['border_size'])) {
$rules[] = "border-width:" . intval($styles['border_size']) . "px;";