Richtext
- overwrite contenteditable hover and focus styles, fixes #1044
This commit is contained in:
parent
2dbfbce0a3
commit
4b670b0786
1 changed files with 9 additions and 1 deletions
|
@ -5078,9 +5078,9 @@ footer {
|
||||||
min-height: 20px;
|
min-height: 20px;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
border: none;
|
border: none;
|
||||||
background: none !important; // overwrite [contenteditable]:hover
|
|
||||||
outline: none;
|
outline: none;
|
||||||
resize: none;
|
resize: none;
|
||||||
|
white-space: pre;
|
||||||
}
|
}
|
||||||
|
|
||||||
.articleNewEdit-body {
|
.articleNewEdit-body {
|
||||||
|
@ -8392,6 +8392,14 @@ output {
|
||||||
}
|
}
|
||||||
|
|
||||||
.richtext-content {
|
.richtext-content {
|
||||||
|
&[contenteditable] {
|
||||||
|
&,
|
||||||
|
&:hover,
|
||||||
|
&:focus {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
table,
|
table,
|
||||||
pre,
|
pre,
|
||||||
blockquote {
|
blockquote {
|
||||||
|
|
Loading…
Reference in a new issue