zydx-plus 1.32.263 → 1.32.264
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<button v-if="item.key === 'but'" class="buts" @click="item.onClick(item,info)"
|
|
8
8
|
:style="{color: (item.active)? '#00ff00' :'#000'}">{{ item.title }}
|
|
9
9
|
</button>
|
|
10
|
-
<button v-if="item.key === 'speech'" class="buts" @mousedown.stop="speechDown" @click="item.onClick(item)"
|
|
10
|
+
<button v-else-if="item.key === 'speech'" class="buts" @mousedown.stop="speechDown" @click="item.onClick(item)"
|
|
11
11
|
:style="{color: (item.active)? '#00ff00' :'#000'}">{{ voiceStatus ? '关闭语音' : '语音输入' }}
|
|
12
12
|
</button>
|
|
13
13
|
<label v-else-if="item.key === 'upImg' || item.key === 'uploadAtt'">
|
|
@@ -820,7 +820,7 @@ export default {
|
|
|
820
820
|
}
|
|
821
821
|
|
|
822
822
|
.ed-head-but label span {
|
|
823
|
-
line-height:
|
|
823
|
+
line-height: 16px !important;
|
|
824
824
|
}
|
|
825
825
|
|
|
826
826
|
.ed-title {
|
|
@@ -905,6 +905,7 @@ export default {
|
|
|
905
905
|
display: inline-block;
|
|
906
906
|
line-height: 16px;
|
|
907
907
|
box-sizing: border-box;
|
|
908
|
+
font-family: Arial;
|
|
908
909
|
}
|
|
909
910
|
|
|
910
911
|
.but-f {
|
|
@@ -925,4 +926,12 @@ export default {
|
|
|
925
926
|
transform: scale(.8);
|
|
926
927
|
color: #fff;
|
|
927
928
|
}
|
|
929
|
+
@-moz-document url-prefix() {
|
|
930
|
+
.buts {
|
|
931
|
+
line-height: 1px;
|
|
932
|
+
}
|
|
933
|
+
.ed-head-but label span {
|
|
934
|
+
line-height: 14px !important;
|
|
935
|
+
}
|
|
936
|
+
}
|
|
928
937
|
</style>
|