Clooos / Bubble-Card

Bubble Card is a minimalist card collection for Home Assistant with a nice pop-up touch.
MIT License
1.44k stars 39 forks source link

Beta 10 button shifted #534

Closed peterthepeter closed 1 month ago

peterthepeter commented 1 month ago

Hello,

since beta 10 the buttons are shifted and have a scrollline on the outside.

This only happens on the PC (on my Mac) tested with several browsers (Arc, Safari, Edge). Cache and cookies have been cleared and all add-ons in the browsers have also been deactivated for test purposes. I don't have this error on my mobile phone (iOS). I am attaching a picture of the error.

Bildschirmfoto 2024-05-26 um 09 17 31 Bildschirmfoto 2024-05-26 um 09 18 07

Clooos commented 1 month ago

Hi, can you check in the editor if you are not on the beta 9?

peterthepeter commented 1 month ago

You're absolutely right. I am 99.9% sure that I did the update yesterday and everything was OK.

I have now installed update 10 again and now it works.

Sorry for the confusion.

A quick question should be if I want to change the colour of the button. This works when the device is switched off. As soon as I switch it on it briefly turns green and then the normal color for switched on devices is displayed. Have I done something wrong?


styles: |-
  .switch-button {
    background-color: ${hass.states['switch.socket_lelit_mara_x2'].state === 'on' ? 'green' : 'rgba(0,190,240,0.6)' } !important;
  } .bubble-icon-container {
    color: rgba(0,190,240,0.6);
  }```
Clooos commented 1 month ago

There is indeed a weird issue when installing this update, some got beta 9 instead of 10.

For your styling issue you can try this:


styles: |-
  .bubble-button-card-container {
      background-color: ${hass.states['switch.socket_lelit_mara_x2'].state === 'on' ? 'green' : 'rgba(0,190,240,0.6)' } !important;
  } 
  .bubble-icon-container {
      color: rgba(0,190,240,0.6);
  }
peterthepeter commented 1 month ago

I'll keep an eye on the update.

Unfortunately, changing the ON colour does not work. The button briefly turns green and then immediately turns yellow. I have attached a video.

https://github.com/Clooos/Bubble-Card/assets/74273835/6e61f58c-795f-4aed-8ef0-70c5039fe9ff

Clooos commented 1 month ago

My bad, this one should work:

styles: |-
  .bubble-button-background {
      opacity: 1 !important;
      background-color: ${hass.states['switch.socket_lelit_mara_x2'].state === 'on' ? 'green' : 'rgba(0,190,240,0.6)' } !important;
  }
  .bubble-icon-container {
      color: rgba(0,190,240,0.6);
  }
peterthepeter commented 1 month ago

Thank you this works, but not on the icon? or miss i something?

  .bubble-icon {
    opacity: 1 !important;
    color: ${hass.states['switch.socket_lelit_mara_x2'].state === 'on' ? 'rgba(0,190,240,0.6);' : 'var(--ha-card-background)' } !important;
  }
Clooos commented 1 month ago

Just remove the ; here 'rgba(0,190,240,0.6);' 🙂