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 269251

Summary: Unexpected tokens
Product: web Reporter: marius_p
Component: CSS Preprocessors (SASS, LESS, ...)Assignee: Milutin Kristofic <mkristofic>
Status: RESOLVED WORKSFORME    
Severity: normal CC: tmysik
Priority: P3    
Version: 8.2   
Hardware: PC   
OS: Windows 10 x64   
Issue Type: DEFECT Exception Reporter:

Description marius_p 2016-12-06 12:12:59 UTC
I've created a scss file with line *:focus and i got two warnings:
Unexpected token STAR found
Unexpected token COLON found
Comment 1 Milutin Kristofic 2016-12-08 12:24:30 UTC
What is your netbeans version? I tested 

Product Version: NetBeans IDE 8.2 (Build 201609300101) 

and it works for me:

.test {
    *:focus {
        background-color: yellow;
    }
}

also

*:focus {
        background-color: yellow;
    }

is ok.

can you paste more your code, so I can reproduce your error?