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

Change ul list style to disc when editing message #10043

Merged
merged 2 commits into from
Feb 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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