I guess it can be abitt hard to see with the coloring. but 10% of the picture was cropped.
I fixed it with
styles:
card:
- border-radius: 0px
I did not need to use that when i only had the custom lovelace button card.
Now its just about grid placement for the text and im done. Guess its mostly getting use to how this works. But now om done with a setup that looks like it did with button card.
A Question. Is it possible to setup a row or column with a condition code on?. Im using that on a card that has a custom lovelace button setup that only shows buttons when its info that is needed. Like for example. Front door is open. and then a icon showing the front door open is shown. OR example larm is not set when everyone left the building.
Rather then having a seonsor icon showing both closed and open I have a row in my previus setup that only shows them when i need to see them.
This bar below is that setup that shows now that my backdoor is open. and when its closed it get hidden.
Thx for all the work you put in. If the conditioning is possible then that will be my last step before im done with my setup.
Is it a design choice that title name does not show upp on homekit card when using popup light?
Cause when i use it on my old setup with button card and browser mod it shows the name of the light.
Ive search the forum here and been looking around for an hour now. but all i find is others posting configs without title name showing aswell
Here when i bring upp the popup all my efforts have all been invain. Even when i try manuy type the name. So i must be doing something verry wrong. or its not possible in homekit card?
Ive tried to find a solution for it on the forum but all my searching only found the same outcome as mine.
And the one i found that works are with browser mod. Allso kind wondering if dubble tap funktion for popup is only achivable with browser mod? or can it be called with the same funktion used for hold_action on the card itself?
Ciao , io ho provato il tuo codice , per un paio di test ma sembra che non prenda la card, le immagini non si colorano di giallo…
hai idea del perchè?
thanks
Hi, you’re doing a really good job. I’m trying to make a condition on some card displays. I would like when the plex is launched, it will replace the card on my TV, but it doesn’t seem to be working.
I looked at your idea at i think i can add it but the problem is the tile does not have a entity.
The card you are loading has an entity of entities you never know.
To make something like that you also have to set the entity you wanna use for the state of the card and the states. I have to look into that.
Could you add this to the github so i dont forget it thank you
thanks for your answer. I’m not that familiar with github, but I’ll try to leave a reminder entry there.
I am aware of the problem described above. If necessary, an implementation as described by you can be done.
Until then, my suggestion would be to leave out the background color for the type “custom tiles” (e.g. custom-button-card) and/or set it to transparent.
My problem is that if I set a light grey transparent background for the inactive state of a custom-button-card, this colour will always be overlaid by the main container (custom:homekit-card / <homekit-button></homekit-button>), i.e. an overlaying of transparent light grey with the colour white of the main container. So at the moment I can only use colors for the tile which have no transparency.
Example:
rgb(77, 90, 93) in custom-button-card -> ok
rgba(77, 90, 93, 0.5) in custom-button-card -> not ok because the white from main-container is in background. The result is a mix of that white and my color.
So if you just remove the background for custom-cards (your background parameters only for custom:homekit-card, else background none), i can do the rest with the options of the custom-card itself.
<homekit-button class="button on"> <!-- always white background -->
<div class="button-inner">
<card-maker ...>
<button-card>
<div>
<ha-card ...> <!-- my custom card with my preferred, transparent background is overplayed by white from main-container -->
</ha-card>
</div>
</button-card>
</card-maker>
</div>
</homekit-button>