Change ul list style to disc when editing message (#10043)

* ensures consistency between timeline, composer and "editor" composer
This commit is contained in:
alunturner 2023-02-02 09:09:52 +00:00 committed by GitHub
parent 923ad4323b
commit 43e7870d92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -635,7 +635,7 @@ $left-gutter: 64px;
}
/* Make list type disc to match rich text editor */
> ul {
ul {
list-style-type: disc;
}

View File

@ -58,6 +58,11 @@ limitations under the License.
padding-inline-start: $spacing-28;
}
/* Make list type disc to match rich text editor */
ul {
list-style-type: disc;
}
blockquote {
color: #777;
border-left: 2px solid $blockquote-bar-color;