|
@@ -20,9 +20,6 @@ h3,
|
|
|
h4,
|
|
h4,
|
|
|
h5,
|
|
h5,
|
|
|
h6,
|
|
h6,
|
|
|
-em,
|
|
|
|
|
-i,
|
|
|
|
|
-b,
|
|
|
|
|
textarea,
|
|
textarea,
|
|
|
button,
|
|
button,
|
|
|
input,
|
|
input,
|
|
@@ -32,7 +29,6 @@ figcaption {
|
|
|
padding: 0;
|
|
padding: 0;
|
|
|
margin: 0;
|
|
margin: 0;
|
|
|
list-style-type: none;
|
|
list-style-type: none;
|
|
|
- font-style: normal;
|
|
|
|
|
text-decoration: none;
|
|
text-decoration: none;
|
|
|
border: none;
|
|
border: none;
|
|
|
background: none;
|
|
background: none;
|
|
@@ -94,3 +90,32 @@ a:active {
|
|
|
.el-button:focus {
|
|
.el-button:focus {
|
|
|
outline: none !important;
|
|
outline: none !important;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+// 富文本编辑器样式覆盖
|
|
|
|
|
+.w-e-text-container [data-slate-editor] {
|
|
|
|
|
+ strong,
|
|
|
|
|
+ strong *,
|
|
|
|
|
+ b,
|
|
|
|
|
+ b * {
|
|
|
|
|
+ font-weight: bold !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ em,
|
|
|
|
|
+ em *,
|
|
|
|
|
+ i,
|
|
|
|
|
+ i * {
|
|
|
|
|
+ font-style: italic !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ u,
|
|
|
|
|
+ u * {
|
|
|
|
|
+ text-decoration: underline !important;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ s,
|
|
|
|
|
+ s *,
|
|
|
|
|
+ strike,
|
|
|
|
|
+ strike * {
|
|
|
|
|
+ text-decoration: line-through !important;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|