diff --git a/assets/css/custom-styles.css b/assets/css/custom-styles.css index 949a81b..884d29f 100644 --- a/assets/css/custom-styles.css +++ b/assets/css/custom-styles.css @@ -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)]]; //*/ } @@ -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 */ diff --git a/assets/css/main-rtl.css b/assets/css/main-rtl.css index 84de11e..90b648e 100644 --- a/assets/css/main-rtl.css +++ b/assets/css/main-rtl.css @@ -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; } diff --git a/assets/scss/custom-styles.scss b/assets/scss/custom-styles.scss index 92dd7d1..f8968c3 100644 --- a/assets/scss/custom-styles.scss +++ b/assets/scss/custom-styles.scss @@ -10,7 +10,7 @@ // @copyright WebMan Design, Oliver Juhas // // @since 2.0.0 -// @version 2.0.0 +// @version 2.0.3 // diff --git a/assets/scss/main.scss b/assets/scss/main.scss index c057f7e..5d1b1b6 100644 --- a/assets/scss/main.scss +++ b/assets/scss/main.scss @@ -7,7 +7,7 @@ // @copyright WebMan Design, Oliver Juhas // // @since 2.0.0 -// @version 2.0.2 +// @version 2.0.3 // diff --git a/assets/scss/main/base/__classes.scss b/assets/scss/main/base/__classes.scss index a978b56..95e8ad6 100644 --- a/assets/scss/main/base/__classes.scss +++ b/assets/scss/main/base/__classes.scss @@ -71,7 +71,7 @@ .skip-link-list { position: absolute; - left: 0; + #{$left}: 0; // {{RTL}} top: 0; padding: 0; margin: 0; diff --git a/assets/scss/main/custom-styles/__intro.scss b/assets/scss/main/custom-styles/__intro.scss index d11c239..84e74f7 100644 --- a/assets/scss/main/custom-styles/__intro.scss +++ b/assets/scss/main/custom-styles/__intro.scss @@ -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 { diff --git a/changelog.md b/changelog.md index 76fb0b8..6b5ee48 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/index.php b/index.php index 0aef47a..9562ae5 100644 --- a/index.php +++ b/index.php @@ -14,7 +14,7 @@ * @copyright WebMan Design, Oliver Juhas * * @since 1.0.0 - * @version 2.0.0 + * @version 2.0.3 */ @@ -34,13 +34,7 @@