From a71b9d78a5c9899d94514abece916b3c72fee9ad Mon Sep 17 00:00:00 2001 From: Ed Sanders Date: Mon, 20 Feb 2017 14:31:02 +0000 Subject: [PATCH] build: Fix stylelint glob pattern Change-Id: I2f37668d32d70d72ed493e81af6b521a3bfaedba --- Gruntfile.js | 2 +- resources/src/mediawiki/page/gallery.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 4cc9721857..5f6d584239 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -58,7 +58,7 @@ module.exports = function ( grunt ) { options: { syntax: 'less' }, - src: '{resources/src/*,mw-config/**}/*.{css,less}' + src: '{resources/src/**,mw-config/**}/*.{css,less}' }, watch: { files: [ diff --git a/resources/src/mediawiki/page/gallery.css b/resources/src/mediawiki/page/gallery.css index b7a9132dfe..1c1bb5da1b 100644 --- a/resources/src/mediawiki/page/gallery.css +++ b/resources/src/mediawiki/page/gallery.css @@ -95,7 +95,7 @@ ul.mw-gallery-packed-overlay li.gallerybox div.gallerytextwrapper, ul.mw-gallery-packed-hover li.gallerybox.mw-gallery-focused div.gallerytextwrapper { position: absolute; background: #fff; - background: rgba(255, 255, 255, 0.8); + background: rgba( 255, 255, 255, 0.8 ); padding: 5px 10px; bottom: 0; left: 0; /* Needed for IE */ -- 2.20.1