Skip to content

Commit

Permalink
set button z-index on input focus
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerwyn committed Aug 15, 2023
1 parent 433561b commit ed88854
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions android-tv-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -634,6 +634,7 @@ class TVCardServices extends LitElement {
e.currentTarget.parentElement.children[0].style.color =
'var(--state-active-color)';
e.currentTarget.style.zIndex = '9';
e.currentTarget.parentElement.style.zIndex = '-1'
}

/**
Expand All @@ -644,6 +645,7 @@ class TVCardServices extends LitElement {
e.currentTarget.value = '';
e.currentTarget.parentElement.children[0].style.color = '';
e.currentTarget.style.zIndex = '';
e.currentTarget.parentElement.style.zIndex = ''
}

/**
Expand Down

0 comments on commit ed88854

Please sign in to comment.