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 - LESS accessor > for mixin grouped in namespace not supported
Summary: LESS accessor > for mixin grouped in namespace not supported
Status: RESOLVED DUPLICATE of bug 234639
Alias: None
Product: web
Classification: Unclassified
Component: CSS Preprocessors (SASS, LESS, ...) (show other bugs)
Version: 8.1
Hardware: PC Windows 8 x64
: P3 normal (vote)
Assignee: Milutin Kristofic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-04-22 18:17 UTC by PamTba
Modified: 2015-04-23 11:42 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***