Change ul list style to disc when editing message (#10043)
* ensures consistency between timeline, composer and "editor" composer
This commit is contained in:
parent
923ad4323b
commit
43e7870d92
2 changed files with 6 additions and 1 deletions
|
@ -635,7 +635,7 @@ $left-gutter: 64px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Make list type disc to match rich text editor */
|
/* Make list type disc to match rich text editor */
|
||||||
> ul {
|
ul {
|
||||||
list-style-type: disc;
|
list-style-type: disc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -58,6 +58,11 @@ limitations under the License.
|
||||||
padding-inline-start: $spacing-28;
|
padding-inline-start: $spacing-28;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Make list type disc to match rich text editor */
|
||||||
|
ul {
|
||||||
|
list-style-type: disc;
|
||||||
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
color: #777;
|
color: #777;
|
||||||
border-left: 2px solid $blockquote-bar-color;
|
border-left: 2px solid $blockquote-bar-color;
|
||||||
|
|
Loading…
Reference in a new issue