Skip to content

Commit

Permalink
fix: seller setup wizard button color (#416)
Browse files Browse the repository at this point in the history
* fix: seller setup wizard button color

* refactor: remove duplicate css class
  • Loading branch information
saimonh3 authored and sabbir1991 committed Oct 26, 2018
1 parent ee1ca70 commit a084b73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions assets/css/setup.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,14 @@
}
.wc-setup .wc-setup-actions .button-primary {
color: #fff;
background: #f2624d !important;
border-color: #f2624d !important;
background: #f2624d;
border-color: #f2624d;
text-shadow: 0 -1px 1px #ef381d, 1px 0 1px #ef381d, 0 1px 1px #ef381d, -1px 0 1px #ef381d;
}
.wc-setup .wc-setup-actions .button-primary:hover,
.wc-setup .wc-setup-actions .button-primary:active,
.wc-setup .wc-setup-actions .button-primary:focus {
background-color: #ef381d !important;
background-color: #ef381d;
}
.wc-setup .wc-setup-content a {
color: #f2624d;
Expand Down
4 changes: 2 additions & 2 deletions classes/seller-setup-wizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ public function dokan_setup_introduction() {
<p><?php _e( 'Thank you for choosing The Marketplace to power your online store! This quick setup wizard will help you configure the basic settings. <strong>It’s completely optional and shouldn’t take longer than two minutes.</strong>', 'dokan-lite' ); ?></p>
<p><?php _e( 'No time right now? If you don’t want to go through the wizard, you can skip and return to the Store!', 'dokan-lite' ); ?></p>
<p class="wc-setup-actions step">
<a href="<?php echo esc_url( $this->get_next_step_link() ); ?>" class="button-primary button button-large button-next lets-go-btn"><?php _e( 'Let\'s Go!', 'dokan-lite' ); ?></a>
<a href="<?php echo esc_url( $dashboard_url ); ?>" class="button button-large not-right-now-btn"><?php _e( 'Not right now', 'dokan-lite' ); ?></a>
<a href="<?php echo esc_url( $this->get_next_step_link() ); ?>" class="button-primary button button-large button-next lets-go-btn dokan-btn-theme"><?php _e( 'Let\'s Go!', 'dokan-lite' ); ?></a>
<a href="<?php echo esc_url( $dashboard_url ); ?>" class="button button-large not-right-now-btn dokan-btn-theme"><?php _e( 'Not right now', 'dokan-lite' ); ?></a>
</p>
<?php
do_action( 'dokan_seller_wizard_introduction', $this );
Expand Down

0 comments on commit a084b73

Please sign in to comment.