作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
需要根据 TreeView 中的条件永久地向复选框添加轮廓,通过添加轮廓样式和轮廓颜色作为复选框轮廓中的样式显示如下
但是当点击复选框轮廓消失。还添加了自定义 CSS
input[type="checkbox"]:focus {
background: red !important;
outline:0px auto red !important;
}
最佳答案
我找到了一些可能对你有帮助的例子
在 account.invoice_form View 中:
<group class="oe_subtotal_footer oe_right invoice-residual-view">
<field name="residual" groups="account.group_account_user"
widget="monetary" options="{'currency_field': 'currency_id'}"/>
</group>
在我们的自定义 styles.css 中:
.invoice-residual-view {
font-size: 24px;
color: #154734; !important;
border: 3px solid #009A44;
font-weight: bold;
}
.openerp .oe_form .oe_subtotal_footer.invoice-residual-view
td.oe_form_group_cell {
vertical-align: middle;
padding: 3px 6px 3px 3px !important;
}
关于css - 在 Odoo10 中选中复选框时,复选框轮廓消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58908010/
我是一名优秀的程序员,十分优秀!