Skip to content

Commit

Permalink
fix WP4.0 box shadow on return to list link :focus
Browse files Browse the repository at this point in the history
  • Loading branch information
webaware committed Sep 6, 2014
1 parent 3d0b147 commit 13a159e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion css/admin.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/admin.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions css/admin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@
.log-emails-link-list {
left: 50%;
text-indent: -0.75em;

/* WP 4.0 places box shadow around where character would be before text-index; clean it up */
&:focus {
box-shadow: none;
color: #444;
}
}

/* provide support for older WP with no dashicons */
Expand Down
4 changes: 2 additions & 2 deletions log-emails.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Log Emails
Plugin URI: http://shop.webaware.com.au/downloads/log-emails/
Description: Log emails to the database, to enable email problem analysis
Version: 1.0.3-dev
Version: 1.0.3
Author: WebAware
Author URI: http://webaware.com.au/
Text Domain: log-emails
Expand Down Expand Up @@ -31,7 +31,7 @@
define('LOG_EMAILS_PLUGIN_FILE', __FILE__);
define('LOG_EMAILS_PLUGIN_ROOT', dirname(__FILE__) . '/');
define('LOG_EMAILS_PLUGIN_NAME', basename(dirname(__FILE__)) . '/' . basename(__FILE__));
define('LOG_EMAILS_PLUGIN_VERSION', '1.0.3-dev');
define('LOG_EMAILS_PLUGIN_VERSION', '1.0.3');

// scheduled tasks
define('LOG_EMAILS_TASK_PURGE', 'log_emails_purge');
Expand Down
5 changes: 3 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Donate link: http://shop.webaware.com.au/downloads/log-emails/
Tags: email log, logging, logs, email
Requires at least: 3.6.1
Tested up to: 4.0
Stable tag: 1.0.2
Stable tag: 1.0.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -62,8 +62,9 @@ Things I'd like to add to the plugin:

== Changelog ==

= 1.0.3 [soon...] =
= 1.0.3 [2014-09-06] =
* fixed: PHP warning on static call to non-static methods in class LogEmailsCache_WpSuperCache
* fixed: fix WordPress 4.0 box shadow on return-to-list :focus

= 1.0.2 [2014-08-21] =
* fixed: bulk action checkboxes not appearing on stand-alone WordPress sites
Expand Down

0 comments on commit 13a159e

Please sign in to comment.