csscss icon indicating copy to clipboard operation
csscss copied to clipboard

A CSS redundancy analyzer that analyzes redundancy.

Results 17 csscss issues
Sort by recently updated
recently updated
newest added

@zmoazeni Thanks for the great tool Is there anything that does this? If not I would be interested contributing this. Example css file: ``` .pizza{ font-size: 16px; color: #ff0000; display:...

enhancement

The `saas` gem has now been deprecated and users have been advised to switch to the `saasc` gem. Unfortunately, the `saas` gem is a dependency to `csscss`. Any plans to...

Running the following ``` @charset "UTF-8"; /**{void}*/ .grid__row { display: block; width: 102.27273%; margin-left: -1.13636%; margin-right: -1.13636%; } ``` with command csscss --show-parser-errors styles.css gives following Had a problem parsing...

Hi, I'm not completely sure if this is a bug, or if I'm not doing something correct. OS: OSX Yosemite 10.10 (tried on OSX Mavericks 10.9.5) Ruby Version: ruby 2.0.0p481...

@zmoazeni @icijavon @carsonmcdonald @prsimp @laserlemon @viveksachdeva resolve #94 resolve #93 This could use some code review. First time with ruby, thanks to @icijavon. Tried to match the style you had...

Hi, I encountered the problem that the CSS parser includes comments in selector names. Example CSS: ``` css /* A comment before a selector*/ h1 { /* some redundant selectors...

I was just cleaning up an extension that was initially developed two years ago: https://www.npmjs.com/package/csscssbeauty It spawns a server, reads the output from csscss and displays it on the website...

Code Snippet: div.main { width : 100%; } div.main { background : white; } Expected output: These two rules should be merged to one. Actual output: Nothing.

enhancement

I have something similar to the following: ``` css @media (min-width: 30em) { .m-label { display: block; } } /* because less than IE9 * doesn't support media queries */...

I'm using a lot of CSS shortcodes and it doesn't seem right that something like: `margin: 15px 0;` and `margin:30px 0;` would be seen as having duplicates for `margin-left` and...

bug