mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-23 00:28:48 +08:00
Improve CSS class naming style guide (#25173)
This commit is contained in:
parent
66c86a6397
commit
ece117b33f
@ -281,10 +281,14 @@ Inheriting all the rules of TypeScript, the following additionally apply:
|
|||||||
Note: We use PostCSS + some plugins to process our styles. It looks like SCSS, but actually it is not.
|
Note: We use PostCSS + some plugins to process our styles. It looks like SCSS, but actually it is not.
|
||||||
|
|
||||||
1. Class names must be prefixed with "mx\_".
|
1. Class names must be prefixed with "mx\_".
|
||||||
2. Class names should denote the component which defines them, followed by any context:
|
2. Class names must denote the component which defines them, followed by any context.
|
||||||
1. mx_MyFoo
|
The context is not further specified here in terms of meaning or syntax.
|
||||||
2. mx_MyFoo_avatar
|
Use whatever is appropriate for your implementation use case.
|
||||||
3. mx_MyFoo_avatar--user
|
Some examples:
|
||||||
|
1. `mx_MyFoo`
|
||||||
|
2. `mx_MyFoo_avatar`
|
||||||
|
3. `mx_MyFoo_avatarUser`
|
||||||
|
4. `mx_MyFoo_avatar--user`
|
||||||
3. Use the `$font` and `$spacing` variables instead of manual values.
|
3. Use the `$font` and `$spacing` variables instead of manual values.
|
||||||
4. Keep indentation/nesting to a minimum. Maximum suggested nesting is 5 layers.
|
4. Keep indentation/nesting to a minimum. Maximum suggested nesting is 5 layers.
|
||||||
5. Use the whole class name instead of shortcuts:
|
5. Use the whole class name instead of shortcuts:
|
||||||
|
Loading…
Reference in New Issue
Block a user