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 - Unexpected tokens
Summary: Unexpected tokens
Status: RESOLVED WORKSFORME
Alias: None
Product: web
Classification: Unclassified
Component: CSS Preprocessors (SASS, LESS, ...) (show other bugs)
Version: 8.2
Hardware: PC Windows 10 x64
: P3 normal (vote)
Assignee: Milutin Kristofic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-12-06 12:12 UTC by marius_p
Modified: 2016-12-08 12:24 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 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?