sdk css 编译调整

This commit is contained in:
liaoxuezhi 2019-08-12 12:20:47 +08:00
parent 310f153c32
commit 6c488a3d10
1 changed files with 3 additions and 1 deletions

View File

@ -20,7 +20,9 @@ function prefixCss(code, prefix) {
var m = sel.match(/(^| )(body|html)($|\W.*)/i);
if (m)
return m[1] + prefix + m[3];
else if (sel.match(/^(?:\.fr-|\.fa|\.is\-modalOpened)/))
else if (sel.match(/^\.is\-modalOpened/))
return sel.replace(/^\.is\-modalOpened\s/, '.is-modalOpened ' + prefix + ' ')
else if (sel.match(/^(?:\.fr-|\.fa)/))
return sel;
else
return prefix + ' ' + sel;