Contribute
To keep the quality development respects the guidelines established by TYPO3 found in the Core API Reference.
Prefixes
The following prefixes are used:
| Prefix | Meaning | Description |
|---|---|---|
| pp | Pizpalue | Base prefix |
| ppc | Pizpalue complement | Mainly used for classes complementing other classes. |
| ce | Content element | Used in conjunction with content elements |
Examples
SCSS
.pp-demo-item {
border: blue 1px solid;
&.ppc-right {
border-right: green 3px solid;
}
}
Copied!
In the above example the class ppc- complements the class pp-.
The complementing classes help to be more specific and less exhaustive
(alternatively to ppc- one might have used pp-). They
should only be used in the context of other classes.