madskristensen / LessCompiler

A Visual Studio extension
Other
15 stars 8 forks source link

Xamarin.Forms `^base` selector isn't compiled properly #22

Open samhouts opened 4 years ago

samhouts commented 4 years ago

Installed product versions

Description

Xamarin.Forms has its own selector to allow you to style any element with a base class matching the class. LessCompiler adds a space between the ^ and the class name.

Steps to recreate

Add a style like so:

^contentpage {
    background-color: red;
}

Save.

Current behavior

.css:

^ contentpage {
  background-color: red;
}

Expected behavior

.css:

^contentpage {
  background-color: red;
}