fret2buzz / styles-split

Split a CSS file based on selectors. (e.g. removing old IE stylesheets etc.)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

styles-split

Split a CSS file based on selectors. (e.g. removing old IE stylesheets etc.)

#Overview

Configuration is in the head of the script

$workingPath = 'c:/cleanup/local/';
$cssFiles = $workingPath . 'input/';
$cssLocales = $workingPath . 'components/';
$patchesPath = $workingPath . 'patches/';
$originalsPath = $workingPath . 'originals/';
$cssFixedFiles = $cssFiles;

$files = glob($cssFiles . '*.css');
$cssCombLine = 'csscomb --config "c:/cleanup/.csscomb.json" --verbose ';

$arrayPattern = array(
	'ie8' => "#ie8#msi",
	'ie9' => "#ie9#msi"
);

#Getting started PHP is required. Installation and Configuration

csscomb is required

git diff utility is required

Once it has been installed simply run this in your command line

php styles-split.php

#Expected result

Source: main.css

.example .bar,
.ie8 .example .bar,
.ie9 .example .bar {background:blue;}
.ie8 {background:red;}
.ie9 {background:orange;}
@media (max-width: 980px) {
  .ie9 {background:yellow;}
  .example .bar{background:red;}
}

Generated file: main-ie.css

.ie8 .example .bar {background:blue;}
.ie9 .example .bar {background:blue;}
.ie8 {background:red;}
.ie9 {background:orange;}
@media (max-width: 980px) {
  .ie9 {background:yellow;}
}

Generated file: main-rest.css

.example .bar {background:blue;}
@media (max-width: 980px) {
  .example .bar {background:red;}
}

About

Split a CSS file based on selectors. (e.g. removing old IE stylesheets etc.)


Languages

Language:PHP 100.0%