Skip to content

Commit 91ecd17

Browse files
authored
fix(uui-inline-button-create): ensure there is a border-color on horizontal (#328)
1 parent c63202c commit 91ecd17

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/uui-button-inline-create/lib/uui-button-inline-create.element.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export class UUIButtonInlineCreateElement extends LitElement {
7676
:host(:hover) #button-wrapper:before {
7777
animation: ${UUIBlinkAnimationValue};
7878
background-color: var(--uui-color-interactive-emphasis);
79-
border-color: var(--uui-color-surface);
79+
border-color: var(--uui-color-surface) !important;
8080
}
8181
8282
#button-wrapper:before {
@@ -103,6 +103,10 @@ export class UUIButtonInlineCreateElement extends LitElement {
103103
width: 2px;
104104
left: 50%;
105105
transform: translateX(-50%);
106+
border-top: none;
107+
border-bottom: none;
108+
border-left: 1px solid transparent;
109+
border-right: 1px solid transparent;
106110
}
107111
108112
:host(:not([vertical]):not(:hover)) #plus:not(:focus) {

0 commit comments

Comments
 (0)