Skip to content

Commit

Permalink
Merge branch 'release/1.7.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Misplon committed May 6, 2019
2 parents 42d0fae + a0237bd commit 90c7f03
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 17 deletions.
8 changes: 7 additions & 1 deletion header.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,13 @@
<span class="shopping-cart-count"><?php echo WC()->cart->cart_contents_count;?></span>
</a>
<ul class="shopping-cart-dropdown" id="cart-drop">
<?php the_widget( 'WC_Widget_Cart' ); ?>
<?php
$instance = array(
'title' => '',
);

the_widget( 'WC_Widget_Cart', $instance );
?>
</ul>
</li>
</ul>
Expand Down
3 changes: 3 additions & 0 deletions inc/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,9 @@ function siteorigin_north_settings_custom_css( $css ) {
#commentform .form-submit input:hover {
background: ${branding_accent_dark};
border-color: ${branding_accent_dark};
}
#commentform input,#commentform textarea {
background-color: ${fonts_field_background};
}';
return $css;
}
Expand Down
4 changes: 4 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ Original design files are available on [Google Drive](https://drive.google.com/f

== Changelog ==

= 1.7.1 - 06 May 2019 =
* Removed WooCommerce mini-cart "Cart" title.
* Minor comment form style improvements.

= 1.7 - 24 April 2019 =
* Improved search form accessibility.
* Added a setting for the input background color located at `Customize > Theme Settings > Customize > Fonts > Form Field Background Color`.
Expand Down
29 changes: 22 additions & 7 deletions sass/site/primary/_comments.scss
Original file line number Diff line number Diff line change
Expand Up @@ -134,30 +134,46 @@
align-items: center;
clear: both;
display: flex;

margin: 0 0 8px;

input {
line-height: 1;
margin-right: 5px;
}

label {
display: inline-block;
font-weight: normal;
margin-bottom: 0;
}
}

// Jetpack Subscriptions.
.comment-subscription-form {
display: block;
clear: both;
margin: 0 0 8px;
overflow: auto;

input {
margin-right: 0;
}

label {
font-weight: normal;
}
}

.form-submit {
margin-top: 10px;
text-align: right;
clear: both;
margin: 15px 0 0;

input {
background: transparent;
border: 1px solid $color__border-button;
border-radius: 0;
box-shadow: inset 0 0 1px rgba(0,0,0,0.25);
color: $color__text_dark;
float: right;
font-family: $font__headings;
font-size: 0.85em;
line-height: 1em;
Expand All @@ -178,10 +194,9 @@

input,
textarea {
background-color: $comments__form_background_color;
background-color: $color__input-background;

&:focus {
background-color: $comments__form_focus_background_color;
outline: none;
}
}
Expand Down
2 changes: 0 additions & 2 deletions sass/variables-site/_variables-site.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ $footer__link_hover_color: #a94346;
$comments__reply_link_color: $color__text_meta;
$comments__reply_background_color: $color__text_dark;
$comments__submit_hover_color: #fff;
$comments__form_background_color: #fff;
$comments__form_focus_background_color: #fcfcfc;

// WooCommerce
$woocommerce__border_color: #d3d3d3;
Expand Down
22 changes: 15 additions & 7 deletions style.css

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

0 comments on commit 90c7f03

Please sign in to comment.