These existing feature of Service Studio CSS Tags is a very nice feature to use when making custom components.
Example Service Studio CSS Tags:
``` css
.component-wrapper {
color: black;
-servicestudio-color: red;
}
```
My idea is expand on the Service Studio CSS Tags for CSS Selectors such that an entire selector can be conditional shown in ServiceStudio using just one -servicestudio- prefix.
Example Service Studio CSS Selectors:
``` css
.component-wrapper {
color: black;
}
-servicestudio-component-wrapper {
color: red;
}
```
Ideally anything using the -servicestudio prefix should removed from the runtime CSS at compile/deployment time.