我正在开发一个React应用程序,并在JS库中使用withStyles
CSS来处理CSS。我在Mozilla中遇到问题,必须根据Mozilla浏览器更改height属性。如何在JS中使用CSS进行更改?似乎@-moz-document url-prefix()
在withStyles中不起作用。
const styles = theme => ({
radioGroupRoot : {
backgroundColor : "#fff9d8",
alignItems : "center",
marginTop : '15px'
},
labelRoot : {
margin : 0,
width : "100%",
alignItems : "end"
},
radioLabel : {
width : "100%",
backgroundColor: "#fff9d8"
},
radioRoot : {
height : "37px",
width : "37px",
color : 'rgba(0, 0, 0, 0.7)'
},
'@-moz-document url-prefix()' : {
radioRoot : {
height: '52px'
}
}
});
答案 0 :(得分:1)
@-moz-document CSS规则已被Firefox 61禁用,以减轻CSS注入攻击的风险
https://bugzilla.mozilla.org/show_bug.cgi?id=1449753
尝试
@supports ( -moz-appearance:none ){
/* Add firefox CSS code here */
}