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