mcss icon indicating copy to clipboard operation
mcss copied to clipboard

color keywords will convert all text

Open leeluolee opened this issue 11 years ago • 0 comments

color keywords will convert all text

like

body{
   white: white;
}

convert to

body{
    #ffffff: #ffffff;
}

The correct result is only convert the value will use for operate color , but not other ident

body{
   white: #fff;
}

leeluolee avatar Jun 09 '13 07:06 leeluolee