el-popover弹窗修改三角样式
Vue<el-popoverplacement="bottom"title="标题"width="200"trigger="manual"content="这是一段内容,这是一段内容,这是一段内容,这是一段内容。"v-model="visible"><el-button slot="reference" @...
·
Vue
<el-popover
placement="bottom"
title="标题"
width="200"
trigger="manual"
content="这是一段内容,这是一段内容,这是一段内容,这是一段内容。"
v-model="visible">
<el-button slot="reference" @click="visible = !visible">手动激活</el-button>
</el-popover>
CSS
.el-popover[x-placement^=bottom] .popper__arrow{
/*el-popover上边三角下层的颜色---也就是视觉上的边框*/
border-bottom-color: rgba(54,229,255,1);
}
.el-popover[x-placement^=bottom] .popper__arrow::after{
/*el-popover上边三角表层的颜色---也就是视觉上的角*/
border-bottom-color: rgba(8,40,100,1);
}
更多推荐
已为社区贡献5条内容
所有评论(0)