fix(Tag): incorrect border color when using plain (#8601)

* fix(Tag): incorrect border color when using plain

* fix: snapshot
This commit is contained in:
neverland 2021-04-22 19:26:19 +08:00 committed by GitHub
parent ed83922042
commit f0eb0d18f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 26 additions and 2 deletions

View File

@ -36,6 +36,7 @@ export default defineComponent({
if (props.plain) {
return {
color: props.textColor || props.color,
borderColor: props.color,
};
}
return {

View File

@ -52,6 +52,7 @@
&--plain {
background-color: @tag-plain-background-color;
border-color: currentColor;
&::before {
position: absolute;
@ -59,7 +60,8 @@
right: 0;
bottom: 0;
left: 0;
border: 1px solid currentColor;
border: 1px solid;
border-color: inherit;
border-radius: inherit;
content: '';
pointer-events: none;

View File

@ -204,7 +204,7 @@ exports[`should render demo and match snapshot 1`] = `
</div>
<div class="van-cell__value">
<transition-stub>
<span style="color: rgb(114, 50, 221);"
<span style="color: rgb(114, 50, 221); border-color: #7232dd;"
class="van-tag van-tag--plain van-tag--default"
>
Tag

View File

@ -4,3 +4,12 @@ exports[`should hide tag when the show prop is false 1`] = `
<transition-stub>
</transition-stub>
`;
exports[`should render border-color correctly 1`] = `
<transition-stub>
<span style="color: blue; border-color: red;"
class="van-tag van-tag--plain van-tag--default"
>
</span>
</transition-stub>
`;

View File

@ -36,3 +36,15 @@ test('should not trigger click event when clicking the close icon', () => {
wrapper.trigger('click');
expect(onClick).toHaveBeenCalledTimes(1);
});
test('should render border-color correctly', () => {
const wrapper = mount(Tag, {
props: {
plain: true,
color: 'red',
textColor: 'blue',
},
});
expect(wrapper.html()).toMatchSnapshot();
});