Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Change ul list style to disc when editing message (#10043)
Browse files Browse the repository at this point in the history
* ensures consistency between timeline, composer and "editor" composer
  • Loading branch information
artcodespace authored Feb 2, 2023
1 parent 923ad43 commit 43e7870
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion res/css/views/rooms/_EventTile.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ $left-gutter: 64px;
}

/* Make list type disc to match rich text editor */
> ul {
ul {
list-style-type: disc;
}

Expand Down
5 changes: 5 additions & 0 deletions res/css/views/rooms/wysiwyg_composer/components/_Editor.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 43e7870

Please sign in to comment.