sidebar
5 years ago
appearance.php
5 years ago
demo-popup.php
5 years ago
demographic-chart.php
5 years ago
demographic.php
5 years ago
exclusions.php
5 years ago
gdpr-config.php
5 years ago
gdpr.php
5 years ago
purposes.php
5 years ago
appearance.php
15 lines
| 1 | <div class="col-md-12"> |
| 2 | <h3><?php echo esc_html__( 'Form Color', 'googleanalytics' ); ?></h3> |
| 3 | </div> |
| 4 | |
| 5 | <div id="sharethis-form-color" class="col-md-12"> |
| 6 | <?php foreach ($colors as $color) : ?> |
| 7 | <div class="color<?php echo isset($gdpr_config['color']) && $color === $gdpr_config['color'] ? ' selected' : ''; ?>" |
| 8 | data-value="<?php echo esc_attr($color); ?>" |
| 9 | style="max-width: 30px; max-height: 30px; overflow: hidden;" |
| 10 | > |
| 11 | <span style="content: ' '; background-color:<?php echo esc_html($color); ?>; padding: 40px;"></span> |
| 12 | </div> |
| 13 | <?php endforeach; ?> |
| 14 | </div> |
| 15 |