Skip to content

Commit

Permalink
modified: changelog.txt
Browse files Browse the repository at this point in the history
	modified:   functions.php
	modified:   lib/csscolor.css.php
	modified:   style.css
  • Loading branch information
tenman committed Jul 10, 2015
1 parent b55b5cd commit 6ffbd8d
Show file tree
Hide file tree
Showing 4 changed files with 112 additions and 103 deletions.
13 changes: 13 additions & 0 deletions changelog.txt
@@ -1,4 +1,17 @@
Changelog -----------------------------------
version:1.306
Overview of Changes

Bug Fixed
Nav Menu CSS Bug Fixed

Files Modified

Description of Code Changes

please see https://github.com/tenman/raindrops/compare/1.305...1.306
-----------------------------------------------
Changelog -----------------------------------
version:1.305
Overview of Changes

Expand Down
18 changes: 14 additions & 4 deletions functions.php
Expand Up @@ -1972,8 +1972,11 @@ function raindrops_embed_css() {
$footer_image_uri = str_replace( $raindrops_current_theme_name, 'raindrops', $footer_image_uri );
}
$css .= "\n#ft{" . raindrops_upload_image_parser( $footer_image_uri, 'inline', '#ft' ) . '}';

$css .= "\n#ft{color:". raindrops_warehouse( 'raindrops_footer_color' ). ';}';
/* 1.306 add conditional */
if( false == raindrops_has_indivisual_notation() ) {

$css .= "\n#ft{color:". raindrops_warehouse( 'raindrops_footer_color' ). ';}';
}
// 2col 3col change style helper
$css .= '/*' . raindrops_warehouse_clone( 'raindrops_show_right_sidebar' ) . '*/';

Expand All @@ -1992,8 +1995,10 @@ function raindrops_embed_css() {
/* ver 1.304 add */
$raindrops_fonts_color = raindrops_warehouse_clone( 'raindrops_default_fonts_color' );

if ( $raindrops_fonts_color !== '' ) {
if ( $raindrops_fonts_color !== '' && false == raindrops_has_indivisual_notation() ) {
/* 1.306 add false == raindrops_has_indivisual_notation() */
$css .= ' article {color:' . $raindrops_fonts_color . ';}';

}
/**
* Add @version 1.304
Expand Down Expand Up @@ -2035,7 +2040,11 @@ function raindrops_embed_css() {
}
} else {

$css .= raindrops_custom_link_color( $raindrops_hyperlink_color );
/* 1.306 add conditional */
if( false == raindrops_has_indivisual_notation() ) {
$css .= raindrops_custom_link_color( $raindrops_hyperlink_color );
}

}
}

Expand Down Expand Up @@ -4725,6 +4734,7 @@ function raindrops_is_fluid() {
"\n#doc5 .static-front-content,
#doc5 .front-page-top-container,
#hd,
.no-header-image #header-inner,
#access .menu-header,
#access > .menu,
#top ol.breadcrumbs,
Expand Down
72 changes: 19 additions & 53 deletions lib/csscolor.css.php
Expand Up @@ -49,34 +49,17 @@ function raindrops_indv_css_dark() {
.ie11.raindrops-accessible-mode.rd-type-dark #access .children a:focus{
$raindrops_focus_style
}
.enable-keyboard #access li:hover >ul > li> a,
.raindrops-accessible-mode #access li:hover> ul> li a,
#access .sub-menu li a,
#access .children li a{
border:1px solid #ccc;
border:1px solid rgba(222,222,222,.5);
border-top:none;
}
.enable-keyboard #access li:hover >ul,
.raindrops-accessible-mode #access li:hover> ul,
#access .sub-menu:hover,
#access .children:hover{
border-top:1px solid #ccc;
border-top:1px solid rgba(222,222,222,.5);
}
#access li:hover > ul > ul{
border:none!important;
}
/* pending
#access a:last-child {
border-right:1px solid #000;
border-right:1px solid red;
}*/
#access li:nth-last-child(1) a {
#access li:nth-last-child(1) {
border-right:2px solid rgba( 222,222,222,.2);
}
body{
Expand Down Expand Up @@ -606,7 +589,7 @@ function raindrops_indv_css_dark() {
#header-image p{
text-shadow: 2px 2px 2px #000;
}
#access .menu > li > a{
#access .menu > li{
border-left:1px solid rgba( 222,222,222,.2);
}
.fail-search,
Expand Down Expand Up @@ -683,14 +666,7 @@ function raindrops_indv_css_w3standard() {
%h2_w3standard_background%
%h_position_rsidebar_h2%
}
#access li:nth-last-child(1) a {
border-right:1px solid #ccc;
}
#access li:nth-child(1) a {
border-left:1px solid #ccc;
}
#access .menu li:first-child,
#access .menu .menu-item-has-children,
#access .menu li:last-child{
Expand Down Expand Up @@ -974,21 +950,11 @@ function raindrops_indv_css_light() {
.raindrops-accessible-mode .hfeed a:focus{
$raindrops_focus_style
}
.enable-keyboard #access li:hover >ul > li> a,
.raindrops-accessible-mode #access li:hover> ul> li a,
#access .sub-menu li a,
#access .children li a{
border:1px solid #696969;
border:1px solid rgba(105,105,105,.5);
border-top:none;
}
.enable-keyboard #access li:hover >ul,
.raindrops-accessible-mode #access li:hover> ul,
#access .sub-menu:hover,
#access .children:hover{
border-top:1px solid #696969;
border-top:1px solid rgba(105,105,105,.5);
}
a:link,
a:active,
Expand Down Expand Up @@ -1241,12 +1207,7 @@ function raindrops_indv_css_light() {
#access ul ul :active >a{
top:0;
}
#access ul li.current_page_item,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
%c5%
}
.ie6 #access ul li.current_page_item a,
.ie6 #access ul li.current-menu-ancestor a,
.ie6 #access ul li.current-menu-item a,
Expand Down Expand Up @@ -1282,6 +1243,7 @@ function raindrops_indv_css_light() {
.rd-page-navigation a{
%c4%
}
.rd-page-navigation .current_page_item{
%c5%
}
Expand Down Expand Up @@ -1401,6 +1363,7 @@ function raindrops_indv_css_light() {
background: %rgba_border%
border:double 3px %rgba_border%;
}
.sticky-widget #wp-calendar th,
.sticky-widget #wp-calendar tbody #today,
.sticky-widget #wp-calendar #prev,
Expand All @@ -1420,8 +1383,7 @@ function raindrops_indv_css_light() {
-webkit-box-shadow: 0 1px 3px #333;
box-shadow: 0 1px 3px #333;
}
.raindrops-tab-list li,
/*#access .children li,*/
#access .focus a,
#access li:hover > ul,
#access a {
Expand All @@ -1431,6 +1393,11 @@ function raindrops_indv_css_light() {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='%custom_dark_bg%', endColorstr='%custom_light_bg%');
color:%custom_color%;
}
#access ul li.current_page_item,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a,
.raindrops-tab-list li,
#access .children li:active >a,
#access li:active >a ,
#access ul ul :active >a {
Expand Down Expand Up @@ -1575,21 +1542,20 @@ function raindrops_indv_css_minimal() {
border-top:1px solid rgba(105,105,105,.5);
}
#access .menu li{
border-left:1px solid #ccc;
#access .menu > li{
border-left:1px solid #ccc;
border-left:1px solid rgba( 156,156,156,.7);
}
#access .menu li:last-child{
#access .menu > li:last-child{
border-right:1px solid #ccc;
border-right:1px solid rgba( 156,156,156,.7);
}
#access .menu li:first-child a,
#access .menu li:last-child a{
border:none;
}
#access li:nth-last-child(1) a {
border-right:1px solid rgba( 156,156,156,.7);
}
/* tinyMCE */
html .mceContentBody,
body{
Expand Down

0 comments on commit 6ffbd8d

Please sign in to comment.