mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 09:15:41 +03:00
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 */
|
||||
> ul {
|
||||
ul {
|
||||
list-style-type: disc;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue