How to override -btn-primary class in React bootstrap Styled Component(如何在Reaction引导样式组件中重写-btn主类)
本文介绍了如何在Reaction引导样式组件中重写-btn主类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我对CSS和Reaction Bootstrap和Reaction不熟悉,但是我正在使用Reaction Bootstrap和样式组件设置按钮的样式。按钮工作正常,但当我右击或单击并按住按钮时,颜色会变为蓝色。我怎么才能避免呢?我还可以看到-btn-PRIMARY被附加到我的样式按钮上。我知道我可以使用!重要的是避免这个问题,但我严格不想使用"aimportant" 我的代码
const AppPrimaryButtonStyle = styled(Button)`
display: contents;
.styled-primary-button {
font: ${props => props.theme.font.family.primary};
color: ${props => props.theme.color.secondaryText};
background-color: ${props => props.theme.color.primary};
border-color: ${props => props.theme.color.primary};
}
`;
const AppPrimaryButton = ({ children, onClick, block, href }: AppPrimaryButtonProps) => (
<AppPrimaryButtonStyle>
<Button className={`styled-primary-button`} onClick={onClick} block={block} href={href}>
{children}
</Button>
</AppPrimaryButtonStyle>
);
export default AppPrimaryButton;
html属性
<button type="button" class="styled-primary-button btn-primary btn btn-primary">Click Me</button>
css
推荐答案的工作方式是,一旦获得一个类,它就会实现样式。这样,您在最后传递的class
将显示在屏幕上,并且具有更多的首选项,因为它是最后应用的。您可以尝试:
const AppPrimaryButton = ({ children, className, onClick, block, href }: AppPrimaryButtonProps) => (
<AppPrimaryButtonStyle>
<Button className={`${className} styled-primary-button`} onClick={onClick} block={block} href={href}>
{children}
</Button>
</AppPrimaryButtonStyle>
);
我认为将生成如下所示的HTML:
<button type="button" class="btn btn-primary styled-primary-button">Click Me</button>
希望这对您有效。
这篇关于如何在Reaction引导样式组件中重写-btn主类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何在Reaction引导样式组件中重写-btn主类
基础教程推荐
猜你喜欢
- 我什么时候应该在导入时使用方括号 2022-01-01
- 动态更新多个选择框 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 在for循环中使用setTimeout 2022-01-01