Skip to content

Commit

Permalink
Fix selected state for selected config entries (#21079)
Browse files Browse the repository at this point in the history
  • Loading branch information
piitaya committed Jun 13, 2024
1 parent 4a8bb50 commit 0bb3483
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/panels/config/integrations/ha-config-integration-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1414,14 +1414,17 @@ class HaConfigIntegrationPage extends SubscribeMixin(LitElement) {
ha-alert:first-of-type {
margin-top: 16px;
}
ha-list-item-new {
position: relative;
}
ha-list-item-new.discovered {
height: 72px;
}
ha-list-item-new.config_entry::after {
position: absolute;
top: 8px;
top: 0;
right: 0;
bottom: 8px;
bottom: 0;
left: 0;
opacity: 0.12;
pointer-events: none;
Expand Down

0 comments on commit 0bb3483

Please sign in to comment.