mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-22 16:18:44 +08:00
16 lines
256 B
SCSS
Vendored
16 lines
256 B
SCSS
Vendored
// Support for BBCode styles like colors and font sizes
|
|
|
|
span {
|
|
&.bbcode-b {
|
|
font-weight: bold;
|
|
}
|
|
&.bbcode-i {
|
|
font-style: italic;
|
|
}
|
|
&.bbcode-u {
|
|
text-decoration: underline;
|
|
}
|
|
&.bbcode-s {
|
|
text-decoration: line-through;
|
|
}
|
|
}
|