This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 252000

Summary: LESS accessor > for mixin grouped in namespace not supported
Product: web Reporter: PamTba
Component: CSS Preprocessors (SASS, LESS, ...)Assignee: Milutin Kristofic <mkristofic>
Status: RESOLVED DUPLICATE    
Severity: normal CC: tmysik
Priority: P3    
Version: 8.1   
Hardware: PC   
OS: Windows 8 x64   
Issue Type: DEFECT Exception Reporter:

Description PamTba 2015-04-22 18:17:56 UTC
/* Example code */

#bundle {
  .button {
    display: block;
  }
}

#header a {
  color: orange;
  #bundle > .button;  /* Unexpected token GREATER found */
}

/*Expected resulting CSS according to http://less2css.org/

#bundle .button {
  display: block;
}

#header a {
  color: orange;
  display: block;
}
*/
Comment 1 Milutin Kristofic 2015-04-23 11:42:48 UTC
It is already reported in Bug 234639. Netbeans parser doesn't allow more than one ID CLASS or Hash in mixin call and definition

*** This bug has been marked as a duplicate of bug 234639 ***