Fix:修复给Text文本设置的字号没有加单位导致在一些浏览器上不生效的问题
This commit is contained in:
parent
0ec20b8fa0
commit
4aa5a8c48b
@ -183,7 +183,7 @@ class Style {
|
|||||||
})
|
})
|
||||||
.css({
|
.css({
|
||||||
'font-family': styles.fontFamily,
|
'font-family': styles.fontFamily,
|
||||||
'font-size': styles.fontSize,
|
'font-size': styles.fontSize + 'px',
|
||||||
'font-weight': styles.fontWeight,
|
'font-weight': styles.fontWeight,
|
||||||
'font-style': styles.fontStyle,
|
'font-style': styles.fontStyle,
|
||||||
'text-decoration': styles.textDecoration
|
'text-decoration': styles.textDecoration
|
||||||
@ -338,7 +338,7 @@ class Style {
|
|||||||
node2.fill({ color: color })
|
node2.fill({ color: color })
|
||||||
fillNode.fill({ color: fill })
|
fillNode.fill({ color: fill })
|
||||||
if (this.ctx.mindMap.opt.isShowExpandNum) {
|
if (this.ctx.mindMap.opt.isShowExpandNum) {
|
||||||
node.attr({ 'font-size': fontSize, 'font-color': fontColor })
|
node.attr({ 'font-size': fontSize + 'px', 'font-color': fontColor })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -28,7 +28,7 @@ function createTextAvatar(item) {
|
|||||||
color: '#fff'
|
color: '#fff'
|
||||||
})
|
})
|
||||||
.css({
|
.css({
|
||||||
'font-size': fontSize
|
'font-size': fontSize + 'px'
|
||||||
})
|
})
|
||||||
.dx(-fontSize / 2)
|
.dx(-fontSize / 2)
|
||||||
.dy((avatarSize - fontSize) / 2)
|
.dy((avatarSize - fontSize) / 2)
|
||||||
|
|||||||
@ -224,8 +224,7 @@ class RichText {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
box-shadow: 0 0 20px rgba(0,0,0,.5);
|
box-shadow: 0 0 20px rgba(0,0,0,.5);
|
||||||
outline: none;
|
outline: none;
|
||||||
word-break:
|
word-break: break-all;
|
||||||
break-all;
|
|
||||||
padding: ${paddingY}px ${paddingX}px;
|
padding: ${paddingY}px ${paddingX}px;
|
||||||
`
|
`
|
||||||
this.textEditNode.addEventListener('click', e => {
|
this.textEditNode.addEventListener('click', e => {
|
||||||
|
|||||||
@ -166,7 +166,7 @@ function styleText(node) {
|
|||||||
})
|
})
|
||||||
.css({
|
.css({
|
||||||
'font-family': associativeLineTextFontFamily,
|
'font-family': associativeLineTextFontFamily,
|
||||||
'font-size': associativeLineTextFontSize
|
'font-size': associativeLineTextFontSize + 'px'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user