Skip to content

Commit

Permalink
Merge pull request #189 from auth0/dev
Browse files Browse the repository at this point in the history
fix css issues
  • Loading branch information
glena committed Apr 5, 2016
2 parents 6e07db0 + f2f6359 commit 94f87a8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions WP_Auth0.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Auth0 for WordPress
* Description: Let your users login with any social provider from Twitter to Facebook as well as many others like Github. Enterprise? We've got you covered - <a href="https://auth0.com">Auth0</a> is a full enterprise solution and will work with your Active Directory or any other environment to take control of your wordpress sites.
* Version: 2.1.7
* Version: 2.1.8
* Author: Auth0
* Author URI: https://auth0.com
*/
Expand All @@ -12,7 +12,7 @@
define( 'WPA0_PLUGIN_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) );
define( 'WPA0_LANG', 'wp-auth0' );
define( 'AUTH0_DB_VERSION', 4 );
define( 'WPA0_VERSION', '2.1.7' );
define( 'WPA0_VERSION', '2.1.8' );

/**
* Main plugin class
Expand Down
2 changes: 1 addition & 1 deletion assets/css/initial-setup/main.styl
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@
margin: 30px 0 10px;
}

p.a0-message.manage {
.a0-message.manage {
margin-bottom: 30px;
margin-top: 30px;
}
Expand Down
5 changes: 2 additions & 3 deletions templates/initial-setup/connection_profile.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@
<div class="a0-step-text a0-message a0-warning">

<b>Important:</b>
<?php _e('To continue you need an Auth0 account, don\'t have one yet? Click ', WPA0_LANG); ?>
<a href="https://auth0.com" about="_blank"><?php _e('here', WPA0_LANG); ?></a>
<?php _e('To continue you need an Auth0 account, don\'t have one yet?', WPA0_LANG); ?>

<button class="a0-button default pull-right">Sign up for free</button>
<a class="a0-button default pull-right" href="https://auth0.com" about="_blank">Sign up for free</a>

</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions templates/initial-setup/consent-disclaimer.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
<a href="" class="a0-button secondary"><?php echo _e('Skip the wizard'); ?></a>
</div>

<p class="a0-message a0-notice">
<div class="a0-message a0-notice">
<b><?php echo _e('IMPORTANT'); ?>:</b>
<?php echo _e('This plug-in replaces the standard WordPress login screen. The experience is improved of course, but different. By default, there is a link to the regular WordPress login screen should you need it.'); ?>
</p>
</div>

</div>
</div>
Expand Down
8 changes: 4 additions & 4 deletions templates/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<div class="row">
<h1><?php _e('Auth0 WordPress Plugin Settings', WPA0_LANG); ?></h1>

<p class="row a0-message a0-warning manage">
<div class="row a0-message a0-warning manage">
For your Auth0 dashboard with more settings click <a href="https://manage.auth0.com">here</a>.
</p>
</div>

<?php if( count(get_settings_errors()) == 0 && isset($_GET['settings-updated']) ) { ?>
<div id="message" class="updated">
Expand Down Expand Up @@ -44,10 +44,10 @@
<span>Updating the connections settings</span>
</div>

<p class="a0-message a0-tip row">
<div class="a0-message a0-tip row">
<b>Pro Tip:</b>
To set your own app keys and settings for the social connections, access the <a target="_blank" href="https://manage.auth0.com/#/connections/social">Auth0 Dashboard</a>.
</p>
</div>

<div class="connections row">
<?php foreach($social_connections as $social_connection) { ?>
Expand Down

0 comments on commit 94f87a8

Please sign in to comment.