Ant-Design-Of-Vue radio-group单选按钮去除边框只留文字

去除全部边框样式,包括浅蓝色阴影,样式如下

  :deep(.ant-radio-button-wrapper) {
    border: none;
  }
  :deep(.ant-radio-button-wrapper:not(:first-child)::before) {
    display: none !important;
  }
  :deep(.ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:first-child) {
    border: 0;
  }
  :deep(.ant-radio-button-wrapper:focus-within) {
    box-shadow: 0 0 0 3px transparent !important;
  }
  :deep(.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)) {
    border-color: transparent !important;
  }
  :deep(.ant-radio-button-wrapper:first-child) {
    border-left: none;
  }

效果:仅保留文字着色

猜你喜欢

转载自blog.csdn.net/m0_46550764/article/details/126480718