diff --git a/src/wp-admin/css/customize-controls.css b/src/wp-admin/css/customize-controls.css
index 448f1b5..8e0d254 100644
a
|
b
|
body { |
534 | 534 | display: block; |
535 | 535 | } |
536 | 536 | |
537 | | #customize-control-header_image .dice { |
538 | | font-size: 16px; |
539 | | vertical-align: -1px; |
540 | | } |
541 | | |
542 | 537 | #customize-control-header_image .placeholder:hover .dice { |
543 | 538 | -webkit-animation: dice-color-change 3s infinite; |
544 | 539 | -moz-animation: dice-color-change 3s infinite; |
diff --git a/src/wp-includes/class-wp-customize-control.php b/src/wp-includes/class-wp-customize-control.php
index f10a74f..cce9195 100644
a
|
b
|
final class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control |
886 | 886 | |
887 | 887 | <div class="placeholder random"> |
888 | 888 | <div class="inner"> |
889 | | <span><span class="dice">⚄</span> |
| 889 | <span><span class="dashicons dashicons-randomize dice"></span> |
890 | 890 | <# if ( data.type === 'uploaded' ) { #> |
891 | 891 | <?php _e( 'Randomize uploaded headers' ); ?> |
892 | 892 | <# } else if ( data.type === 'default' ) { #> |
… |
… |
final class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control |
917 | 917 | |
918 | 918 | <div class="placeholder"> |
919 | 919 | <div class="inner"> |
920 | | <span><span class="dice">⚄</span> |
| 920 | <span><span class="dashicons dashicons-randomize dice"></span> |
921 | 921 | <# if ( data.type === 'uploaded' ) { #> |
922 | 922 | <?php _e( 'Randomizing uploaded headers' ); ?> |
923 | 923 | <# } else if ( data.type === 'default' ) { #> |