Elementui蓝色阴影边框相关问题的解决方案

Elementui蓝色阴影边框相关问题的解决方案,第1张

Tabs标签页出现蓝色阴影边框解决方案
.el-tabs__item:focus.is-active.is-focus:not(:active) {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}
.el-tabs__item,.el-tabs__item:focus,.el-tabs__item:focus-visible{
  outline: transparent auto 0px !important;
}

el-button-radio出现蓝色阴影边框解决方案

.el-radio-button:focus:not(.is-focus):not(:active):not(.is-disabled) {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}
.el-radio-button,.el-radio-button:focus,.el-radio-button:focus-visible{
  outline: transparent auto 0px !important;
}

el-dropdown 下拉菜单出现蓝色阴影边框解决方案

.el-dropdown-link,.el-dropdown-link:focus,.el-dropdown-link:focus-visible {
    outline: transparent auto 0px !important;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1297059.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-10
下一篇 2022-06-10

发表评论

登录后才能评论

评论列表(0条)

保存