Skip to content

Commit

Permalink
2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
webmandesign committed Feb 6, 2018
1 parent e0aa3b5 commit 7595d85
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 22 deletions.
6 changes: 4 additions & 2 deletions assets/css/custom-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ a, .accent-color { /*[*/ color: #00855b; /*]*/ /*// color: [[color_accent]]; //*

.site-header-navigation h2, .site-header-navigation::before h2, .site-header-navigation h3, .site-header-navigation::before h3, .site-header-navigation h4, .site-header-navigation::before h4, .site-header-navigation .h1, .site-header-navigation::before .h1, .site-header-navigation .h2, .site-header-navigation::before .h2, .site-header-navigation .h3, .site-header-navigation::before .h3, .site-header-navigation .h4, .site-header-navigation::before .h4 { color: inherit; }

.site-header-content, .intro-container { /*[*/ background-color: #1a1c1e; color: #ffffff; /*]*/ /*// background-color: [[color_intro_background]]; color: [[color_intro_text]]; //*/ }
.site-header-content, .intro-container, .intro-media { /*[*/ background-color: #1a1c1e; color: #ffffff; /*]*/ /*// background-color: [[color_intro_background]]; color: [[color_intro_text]]; //*/ }

.site-header-content h1, .intro-container h1, .site-header-content h2, .intro-container h2, .site-header-content h3, .intro-container h3, .site-header-content h4, .intro-container h4, .site-header-content .h1, .intro-container .h1, .site-header-content .h2, .intro-container .h2, .site-header-content .h3, .intro-container .h3, .site-header-content .h4, .intro-container .h4 { color: inherit; }
.site-header-content h1, .intro-container h1, .intro-media h1, .site-header-content h2, .intro-container h2, .intro-media h2, .site-header-content h3, .intro-container h3, .intro-media h3, .site-header-content h4, .intro-container h4, .intro-media h4, .site-header-content .h1, .intro-container .h1, .intro-media .h1, .site-header-content .h2, .intro-container .h2, .intro-media .h2, .site-header-content .h3, .intro-container .h3, .intro-media .h3, .site-header-content .h4, .intro-container .h4, .intro-media .h4 { color: inherit; }

.is-singular .content-area, .entry, .page-template-_front .comments-area, .sidebar .widget { /*[*/ background-color: #ffffff; color: #6a6c6e; border-color: rgba(106, 108, 110, 0.2); /*]*/ /*// background-color: [[color_content_background]]; color: [[color_content_text]]; border-color: [[color_content_text(20)]]; //*/ }

Expand Down Expand Up @@ -114,6 +114,8 @@ mark, .highlight { /*[*/ -webkit-box-shadow: 0.38em 0 0 #00855b, -0.38em 0 0 #00
@media only screen and (max-width: 54.9375em) { .has-navigation-mobile .main-navigation-container { /*[*/ background-color: #0a0c0e; color: #ffffff; border-color: rgba(255, 255, 255, 0.2); /*]*/ /*// background-color: [[color_header_background]]; color: [[color_header_text]]; border-color: [[color_header_text(20)]]; //*/ } }

/* FILE: main/custom-styles/__intro.scss */
.intro-container { background-color: transparent; }

.intro-media::after { /*[*/ background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#1a1c1e)); background-image: -o-linear-gradient(transparent, #1a1c1e); background-image: linear-gradient(transparent, #1a1c1e); /*]*/ /*// background-image: linear-gradient( transparent, [[background_color]] ); //*/ }

/* FILE: main/custom-styles/__content.scss */
Expand Down
2 changes: 1 addition & 1 deletion assets/css/main-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -1102,7 +1102,7 @@ code::before, pre::before, .wp-playlist::before, .pagination a:hover::before, .p

.site .background-size-stretch > div { background-size: inherit; }

.skip-link-list { position: absolute; left: 0; top: 0; padding: 0; margin: 0; list-style: none; }
.skip-link-list { position: absolute; right: 0; top: 0; padding: 0; margin: 0; list-style: none; }

.skip-link-list-item { list-style: inherit; white-space: nowrap; }

Expand Down
2 changes: 1 addition & 1 deletion assets/scss/custom-styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// @copyright WebMan Design, Oliver Juhas
//
// @since 2.0.0
// @version 2.0.0
// @version 2.0.3
//


Expand Down
2 changes: 1 addition & 1 deletion assets/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// @copyright WebMan Design, Oliver Juhas
//
// @since 2.0.0
// @version 2.0.2
// @version 2.0.3
//


Expand Down
2 changes: 1 addition & 1 deletion assets/scss/main/base/__classes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@

.skip-link-list {
position: absolute;
left: 0;
#{$left}: 0; // {{RTL}}
top: 0;
padding: 0;
margin: 0;
Expand Down
20 changes: 13 additions & 7 deletions assets/scss/main/custom-styles/__intro.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,21 @@

.intro-container {
@extend %intro_colors;
background-color: transparent;
}

.intro-media::after {
/*[*/
background-image: linear-gradient( transparent, map_get( $colors, 'body_background' ) );
/*]*/
/*//
background-image: linear-gradient( transparent, [[background_color]] );
//*/
.intro-media {
@extend %intro_colors;

&::after {
/*[*/
background-image: linear-gradient( transparent, map_get( $colors, 'body_background' ) );
/*]*/
/*//
background-image: linear-gradient( transparent, [[background_color]] );
//*/
}

}

.slick-slider {
Expand Down
15 changes: 15 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Modern Changelog

## 2.0.3

* **Update**: Improving blog page summary display
* **Fix**: Intro section color styles
* **Fix**: Minor RTL styles issue with skip links

### Files changed:

changelog.md
index.php
style.css
assets/scss/custom-styles.scss
assets/scss/main.scss


## 2.0.2

* **Add**: RSS and Xing social icons
Expand Down
10 changes: 2 additions & 8 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* @copyright WebMan Design, Oliver Juhas
*
* @since 1.0.0
* @version 2.0.0
* @version 2.0.3
*/


Expand All @@ -34,13 +34,7 @@
<h1 class="page-title"><?php single_post_title(); ?></h1>
<?php if ( ! Modern_Post::is_paged() ) : ?>
<div class="archive-description">
<?php

$page_for_posts = get_post( absint( get_option( 'page_for_posts' ) ) );

echo apply_filters( 'get_the_excerpt', $page_for_posts->post_excerpt );

?>
<?php echo get_the_excerpt( absint( get_option( 'page_for_posts' ) ) ); ?>
</div>
<?php endif; ?>
</header>
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Theme Name: Modern
Theme URI: https://www.webmandesign.eu/portfolio/modern-wordpress-theme/
Author: WebMan Design
Author URI: https://www.webmandesign.eu/
Version: 2.0.2
Version: 2.0.3
Text Domain: modern
Domain Path: /languages
License: GNU General Public License v3
Expand Down

0 comments on commit 7595d85

Please sign in to comment.