CSS Tag/Component Selector
Like CSS type selectors, Stylable tag selectors
can match the names of elements in the DOM.
Tag selectors are not scoped themselves. Other selectors used with a tag selector can be scoped. For example if a class selector is used with a tag selector, the class is scoped and the tag selector is not. The matching qualified name of a tag selector can therefore target any element in the subtree of the component.
Native element
Targeting a native element matches any element with the same tag name that is found in a prefix selector. The prefix selector could be a class selector or the root.
To target all elements of a certain type in your project, use a global selector
.
@namespace "Page";
.root form { background: green; }
.sideBar:hover form { background: red; }
:global(span) { background: blue; }
/* CSS output - form is scoped to the page - affects any nested instance */
.Page__root form { background: green; }
.Page__sideBar:hover form { background: red; }
span { background: blue; } /* this will affect *ALL* spans in your application */
Note
The valueform
itself is not namespaced.
/* comp.jsx */
import React from 'react';
import { style, classes } from './comp.st.css';
class Comp extends React.Component {
render () {
return (
<div className={style(classes.root, this.props.className)}>
<div className={classes.sideBar}>
<form /> /* green background and red while hovering parent */
</div>
<form /> /* green background */
<span /> /* blue background */
</div>
);
}
}
Component element
When the value of a stylesheet is imported with a capital first letter, it can be used as a component tag selector.
@namespace "Page";
:import{
-st-from: "./toggle-button.st.css";
-st-default: ToggleButton;
}
.root ToggleButton { background: green; }
.sideBar:hover ToggleButton { background: red; }
/* CSS output - ToggleButton is scoped to the page, affects any nested toggle button */
.Page__root .ToggleButton__root { background: green; }
.Page__sideBar:hover .ToggleButton__root { background: red; }
/* comp.jsx */
import React from 'react';
import { style, classes } from './comp.st.css';
/* React implementation - button component implements toggle-button.css */
import ToggleButton from './toggle-button';
class Comp extends React.Component {
render () {
return (
<div className={style(classes.root, this.props.className)}>
<div className={classes.sideBar}>
<ToggleButton /> /* green background and red while hovering parent */
</div>
<ToggleButton /> /* green background */
</div>
);
}
}