如何使用 withStyles 编写特定于 Mozilla 的 CSS
How to write Mozilla specific CSS using withStyles
我正在开发一个 React 应用程序并在 JS 库中使用 withStyles
CSS 来处理 CSS。我在 Mozilla 中遇到一个问题,我必须根据 Mozilla 浏览器更改高度属性。如何在 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'
}
}
});
@-moz-document CSS at-rule 已在 Firefox 61 中禁用,以降低 CSS 注入攻击的风险
https://bugzilla.mozilla.org/show_bug.cgi?id=1449753
试试
@supports ( -moz-appearance:none ){
/* Add firefox CSS code here */
}
我正在开发一个 React 应用程序并在 JS 库中使用 withStyles
CSS 来处理 CSS。我在 Mozilla 中遇到一个问题,我必须根据 Mozilla 浏览器更改高度属性。如何在 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'
}
}
});
@-moz-document CSS at-rule 已在 Firefox 61 中禁用,以降低 CSS 注入攻击的风险
https://bugzilla.mozilla.org/show_bug.cgi?id=1449753
试试
@supports ( -moz-appearance:none ){
/* Add firefox CSS code here */
}