Skip to content

Commit

Permalink
Merge branch 'release/1.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkingorg committed Dec 21, 2013
2 parents c08a6da + 2d796e0 commit a3615ec
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CF Post Formats

## Version 1.3

- (fix) WordPress 3.8 admin UI compatibility

## Version 1.2

- (fix) Don't auto-set the post title for status posts if a title already exists
Expand Down
4 changes: 2 additions & 2 deletions cf-post-formats.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: CF Post Formats
Plugin URI: http://crowdfavorite.com
Description: Custom post format admin UI
Version: 1.2
Version: 1.3
Author: crowdfavorite
Author URI: http://crowdfavorite.com
*/
Expand Down Expand Up @@ -32,7 +32,7 @@

if (!defined('CFPF_VERSION')) {

define('CFPF_VERSION', '1.2');
define('CFPF_VERSION', '1.3');

function cfpf_base_url() {
return trailingslashit(apply_filters('cfpf_base_url', plugins_url('', __FILE__)));
Expand Down
14 changes: 5 additions & 9 deletions css/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -122,16 +122,12 @@
.cf-nav ul li a {
display: block;
color: #999;
background-color: #f1f1f1;
background-image: -moz-linear-gradient(-90deg, #f9f9f9 , #ececec );
background-image: -webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));
background-image: linear-gradient(top,#f9f9f9,#ececec);
background-color: #eee;
border: 1px solid #ddd;
border-bottom: 0;
font-size: 15px;
font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;
height: 29px;
line-height: 29px;
font-size: 12px;
height: 25px;
line-height: 25px;
margin-right: 5px;
padding: 0 10px;
text-decoration: none;
Expand All @@ -149,7 +145,7 @@
.cf-nav ul li a.current {
background: none;
border: 1px solid #ccc;
border-bottom: 1px solid #fff;
border-bottom: 1px solid #f1f1f1;
color: #464646;
margin-bottom: -1px;
}
Expand Down

0 comments on commit a3615ec

Please sign in to comment.