[ 
https://issues.apache.org/jira/browse/NETBEANS-409?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Christian Lenz updated NETBEANS-409:
------------------------------------
    Description: 
ATM NetBeans only supports SCSS but not SASS. See here the differences:

{code:css}
/* SASS */
$blue: #3bbfce
$margin: 16px

.content-navigation
  border-color: $blue
  color: darken($blue, 9%)

.border
  padding: $margin / 2
  margin: $margin / 2
  border-color: $blue
{code}

{code:css}
/* SCSS */
$blue: #3bbfce;
$margin: 16px;

.content-navigation {
  border-color: $blue;
  color: darken($blue, 9%);
}

.border {
  padding: $margin / 2;
  margin: $margin / 2;
  border-color: $blue;
}
{code}

So you can see, the syntax is quite similar to JADE but NetBeans needs a 
parser/lexer for sass.


Cheers

Chris

  was:
ATM NetBeans only supports SCSS but not SASS. See here the differences:

{code:sass}
/* SASS */
$blue: #3bbfce
$margin: 16px

.content-navigation
  border-color: $blue
  color: darken($blue, 9%)

.border
  padding: $margin / 2
  margin: $margin / 2
  border-color: $blue
{code}

{code:scss}
/* SCSS */
$blue: #3bbfce;
$margin: 16px;

.content-navigation {
  border-color: $blue;
  color: darken($blue, 9%);
}

.border {
  padding: $margin / 2;
  margin: $margin / 2;
  border-color: $blue;
}
{code}

So you can see, the syntax is quite similar to JADE but NetBeans needs a 
parser/lexer for sass.


Cheers

Chris


> Please support sass
> -------------------
>
>                 Key: NETBEANS-409
>                 URL: https://issues.apache.org/jira/browse/NETBEANS-409
>             Project: NetBeans
>          Issue Type: New Feature
>          Components: web - CSS Preprocessors (SASS, LESS, ...)
>    Affects Versions: Next
>            Reporter: Christian Lenz
>            Priority: Major
>
> ATM NetBeans only supports SCSS but not SASS. See here the differences:
> {code:css}
> /* SASS */
> $blue: #3bbfce
> $margin: 16px
> .content-navigation
>   border-color: $blue
>   color: darken($blue, 9%)
> .border
>   padding: $margin / 2
>   margin: $margin / 2
>   border-color: $blue
> {code}
> {code:css}
> /* SCSS */
> $blue: #3bbfce;
> $margin: 16px;
> .content-navigation {
>   border-color: $blue;
>   color: darken($blue, 9%);
> }
> .border {
>   padding: $margin / 2;
>   margin: $margin / 2;
>   border-color: $blue;
> }
> {code}
> So you can see, the syntax is quite similar to JADE but NetBeans needs a 
> parser/lexer for sass.
> Cheers
> Chris



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to