Skip to content

Commit

Permalink
Compile CSS, fix missing class dot in selector
Browse files Browse the repository at this point in the history
  • Loading branch information
Roni Laukkarinen committed Jun 28, 2018
1 parent cc7affa commit d107039
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions css/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -3797,9 +3797,9 @@ form.search-form .search-submit {
text-decoration: none;
list-style: none;
cursor: pointer;
-ms-user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background: transparent;
border: 0;
Expand Down Expand Up @@ -4787,9 +4787,9 @@ form.search-form .search-submit {

.entry-header-demo {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
display: -webkit-box;
max-width: 100%;
height: 50rem;
height: 500px;
Expand Down
2 changes: 1 addition & 1 deletion css/global.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package air-light
*/

define( 'AIR_LIGHT_VERSION', '4.2.4' );
define( 'AIR_LIGHT_VERSION', '4.2.5' );

/**
* Requires.
Expand Down
1 change: 1 addition & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ gulp.task('styles', function() {
gulp.src('css/global.css')
.pipe(stylefmt({ configFile: './.stylelintrc' }))
.pipe(gulp.dest(cssDest))
.pipe(browserSync.stream());

});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "air-light",
"version": "4.2.4",
"version": "4.2.5",
"description": "A minimalist WordPress starter theme.",
"author": "Digitoimisto Dude Oy (moro@dude.fi)",
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Tags: one-column, accessibility-ready, translation-ready

Requires at least: 4.0
Tested up to: 4.9.6
Stable tag: 4.2.4
Stable tag: 4.2.5
License: MIT License
License URI: https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion sass/navigation/_nav-core.scss
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,6 @@ $enable-animations: true;
font-size: 1.3rem;
}

.no-js nav-toggle {
.no-js .nav-toggle {
display: none;
}
4 changes: 2 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: https://github.com/digitoimistodude/air-light
Author: Digitoimisto Dude Oy
Author URI: https://www.dude.fi
Description: A minimalist WordPress starter theme.
Version: 4.2.4
Version: 4.2.5
License: MIT License
License URI: https://github.com/digitoimistodude/air-light/blob/master/LICENSE.md
Text Domain: air-light
Expand All @@ -19,6 +19,6 @@ Tags: one-column, accessibility-ready, translation-ready
* @link https://github.com/Automattic/_s/commits/master
*
* @author Roni Laukkarinen (https://github.com/ronilaukkarinen), Timi Wahalahti (https://github.com/timiwahalahti)
* @version 25.06.2018
* @version 28.06.2018
* @since 28.01.2016
*/

0 comments on commit d107039

Please sign in to comment.