Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix css issues #189

Merged
merged 1 commit into from
Apr 5, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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