mirror of https://github.com/vector-im/riot-web
Change ul list style to disc when editing message (#10043)
* ensures consistency between timeline, composer and "editor" composerpull/28217/head
parent
923ad4323b
commit
43e7870d92
|
@ -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 New Issue