Logger
10 months ago
Patterns
10 months ago
PersonalizationTags
7 months ago
Renderer
4 weeks ago
Templates
2 months ago
class-assets-manager.php
4 months ago
class-dependency-check.php
1 year ago
class-email-api-controller.php
4 months ago
class-email-editor.php
4 months ago
class-email-styles-schema.php
1 year ago
class-personalizer.php
4 months ago
class-send-preview-email.php
3 months ago
class-settings-controller.php
2 months ago
class-site-style-sync-controller.php
2 months ago
class-theme-controller.php
2 months ago
class-user-theme.php
1 year ago
content-editor.css
9 months ago
content-shared.css
10 months ago
theme.json
2 months ago
content-shared.css
28 lines
| 1 | /* |
| 2 | * Styles for both the email editor and renderer. |
| 3 | */ |
| 4 | |
| 5 | /* Automatic padding for blocks with background color */ |
| 6 | .email-text-block.has-background, |
| 7 | p.has-background, |
| 8 | h1.has-background, |
| 9 | h2.has-background, |
| 10 | h3.has-background, |
| 11 | h4.has-background, |
| 12 | h5.has-background, |
| 13 | h6.has-background { |
| 14 | padding: 16px 24px; |
| 15 | } |
| 16 | |
| 17 | /* Specific padding for list elements */ |
| 18 | ul.has-background, |
| 19 | ol.has-background { |
| 20 | padding: 20px 40px; |
| 21 | } |
| 22 | |
| 23 | /* Remove default browser underline from site title link */ |
| 24 | .wp-block-site-title a:not(.wp-element-button) { |
| 25 | text-decoration: none !important; |
| 26 | color: inherit; |
| 27 | } |
| 28 |