sbt-less icon indicating copy to clipboard operation
sbt-less copied to clipboard

alpha colors corrupted

Open thisVioletHydra opened this issue 1 year ago • 4 comments

before

body {
 color: #0000 !important;
 background-color: #0000; 
}

after

body {
  color: #000 0 !important;
  background-color: #000 0;
}

help 🗿

thisVioletHydra avatar Sep 05 '24 17:09 thisVioletHydra

Which version of sbt-less are you using? I think this might be a problem in less.js itself.

mkurz avatar Sep 06 '24 12:09 mkurz

Which version of sbt-less are you using? I think this might be a problem in less.js itself.

addSbtPlugin("com.github.sbt" % "sbt-less" % "2.0.0")

thisVioletHydra avatar Sep 09 '24 10:09 thisVioletHydra

@thisVioletHydra could you meanwhile figure out what's going on?

mkurz avatar Oct 08 '24 12:10 mkurz

@thisVioletHydra could you meanwhile figure out what's going on?

less not understand alpha hex i writhed new convertor for my project : #0000 to rgba(0,0,0,0) and all working again

thisVioletHydra avatar Oct 09 '24 12:10 thisVioletHydra