BLOGS BY TOPIC▼
BLOGS BY AUTHOR▼
BLOGS BY YEAR▼
Posted by Andy Brown on 19 May 2016
You need a minimum screen resolution of about 700 pixels width to see our blogs. This is because they contain diagrams and tables which would not be viewable easily on a mobile phone or small laptop. Please use a larger tablet, notebook or desktop computer, or change your screen resolution settings.
Web Extensions throws error when compiling SASS
Having wasted a couple of hours tracking this error down, I thought I'd share it in case I can help anyone else. Here's my scenario:
Software | Version |
---|---|
Visual Studio | 2015 |
Web Extensions | Not sure! |
The symptom is that when I saved my SCSS files, I got this message:

Error reading values after )
Googling failed to throw up anything.
I've also tried CompileSass and Web Workbench, but neither gave good results.
After trial and error (disabling include files line by line), I eventually tracked down the error to this line:
// clients
.mvcClientTitle
{
// having this as !Important (capital I)
// stopped web extensions working (threw error)
background: darken($alpha,0%) !important;
color: white;
So it turns out a capital I cost me two hours of work!