Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
removed unnecessary color stylesheet call
  • Loading branch information
tylerbcunning committed Apr 4, 2012
1 parent fdb0eb6 commit 0c79b36
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
5 changes: 4 additions & 1 deletion changelog.txt
Expand Up @@ -6,7 +6,10 @@ Version 1.0.7 (04-04-12)
-Unidentified index error fix for meta box code.
-Changed <!--more--> link text to "Read more…" when the_content() is used.
-Added French and Romanian translation files.
-Removed height: auto from objects in responsive style sheet.
-Removed height: auto from objects in responsive style sheet.
-Fixed bug with archive of an empty category.
-Adjusted "viewport" initial scale for full-width mobile device view.
-Removed unnecessary color stylesheet call.

Version 1.0.6 (03-22-12)
-Added opt-in PressTrends option.
Expand Down
10 changes: 2 additions & 8 deletions core/actions/header-actions.php
Expand Up @@ -83,7 +83,7 @@ function response_meta_tags() {
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta name="distribution" content="global" />
<meta name="language" content="en" />
<meta name="viewport" content="initial-scale=1.6; maximum-scale=1.0; width=device-width; "/><?php
<meta name="viewport" content="initial-scale=1.0; maximum-scale=1.0; width=device-width"/><?php
}

/**
Expand Down Expand Up @@ -163,12 +163,7 @@ function response_link_rel() {
else {
$font = $options->get($themeslug.'_font');
}
if ($options->get($themeslug.'_color_scheme') == '') {
$color = 'blue';
}
else {
$color = $options->get($themeslug.'_color_scheme');
}?>
?>

<link rel="shortcut icon" href="<?php echo stripslashes($favicon['url']); ?>" type="image/x-icon" />

Expand All @@ -178,7 +173,6 @@ function response_link_rel() {
<link rel="stylesheet" href="<?php bloginfo( 'template_url' ); ?>/css/shortcode.css" type="text/css" />
<link rel="stylesheet" href="<?php bloginfo( 'template_url' ); ?>/css/elements.css" type="text/css" />
<link rel="stylesheet" href="<?php bloginfo( 'template_url' ); ?>/css/style.css" type="text/css" />
<link rel="stylesheet" href="<?php bloginfo( 'template_url' ); ?>/css/color/<?php echo $color; ?>.css" type="text/css" />

<?php if (is_child_theme()) : //add support for child themes?>
<link rel="stylesheet" href="<?php echo bloginfo('stylesheet_directory') ; ?>/style.css" type="text/css" />
Expand Down

0 comments on commit 0c79b36

Please sign in to comment.