[MediaWiki-l] vector subskin ignoring my screen.css

2014-01-20 Thread Bill Traynor
Followed this tutorial: http://blog.redwerks.org/2012/02/28/mediawiki-subskin-tutorial/ Still wrestling with getting my vector subskin to recognize customizations in screen.css. The myskin.php file contains: $wgResourceModules['skins.myskin'] = array( 'styles' = array(

Re: [MediaWiki-l] vector subskin ignoring my screen.css

2014-01-20 Thread Daniel Friesen
On 2014-01-20 1:07 PM, Bill Traynor wrote: Given that the goal of a subskin is to not have to make any changes to core code, what is the line: $out-addModuleStyles( skins.myskin ) doing? Isn't that saying to load a module called skins.myskin? Yes, you put your custom css into that module. And

Re: [MediaWiki-l] vector subskin ignoring my screen.css

2014-01-20 Thread Bill Traynor
On Mon, Jan 20, 2014 at 4:11 PM, Daniel Friesen dan...@nadir-seen-fire.com wrote: On 2014-01-20 1:07 PM, Bill Traynor wrote: Given that the goal of a subskin is to not have to make any changes to core code, what is the line: $out-addModuleStyles( skins.myskin ) doing? Isn't that saying to

Re: [MediaWiki-l] vector subskin ignoring my screen.css

2014-01-20 Thread Bartosz DziewoƄski
On Mon, 20 Jan 2014 22:15:57 +0100, Bill Traynor btray...@gmail.com wrote: Does my CSS have to be LESS now in 1.22? No, you can just use CSS. Only .less files are considered to contain LESS code and compiled. (Also, all valid CSS is also valid LESS.) -- Matma Rex

Re: [MediaWiki-l] vector subskin ignoring my screen.css

2014-01-20 Thread Bill Traynor
On Mon, Jan 20, 2014 at 4:11 PM, Daniel Friesen dan...@nadir-seen-fire.com wrote: On 2014-01-20 1:07 PM, Bill Traynor wrote: Given that the goal of a subskin is to not have to make any changes to core code, what is the line: $out-addModuleStyles( skins.myskin ) doing? Isn't that saying to

Re: [MediaWiki-l] vector subskin ignoring my screen.css

2014-01-20 Thread Bill Traynor
On Mon, Jan 20, 2014 at 4:50 PM, Bill Traynor btray...@gmail.com wrote: On Mon, Jan 20, 2014 at 4:11 PM, Daniel Friesen dan...@nadir-seen-fire.com wrote: On 2014-01-20 1:07 PM, Bill Traynor wrote: Given that the goal of a subskin is to not have to make any changes to core code, what is the