Mmmz
Hard reloaded, cleared cache but still loads old version.
Mmmz
Hard reloaded, cleared cache but still loads old version.
HACS sometimes does thatā¦ try downloading again. Is HACS up-to-date?
Ah yes itās been renamed to bar-card-markerbar
, sorry I didnāt quite keep track of all the element changes very well. Iāve fixed this one in the docs and Iāll see if I have some time later to check the rest.
One thing Iām still not quite sure about is why youāre offsetting all the bars in CSS? If you want to reduce the padding around the bar itās much easier to just do this:
#states {
padding: 8px;
}
Also you can set the border radius of the bars using a theme variable.
answering myself for reference: missed the change to āmoduleā from ājsā in resources. Now loading and showing fine.
as posted on https://github.com/custom-cards/bar-card/issues/65#issuecomment-620572904, canāt we disable showing the expected entity icons? My entities use an entity_picture, and I dont want that displayed below the bars.:
Iām using the bar as part of a custom:stack-in-card and Iām manipulating itās position within that card.
Here is my thermometer inspired temperature bar-card.
Iām sure that the code could be cleaner, but Iām not a CSS mage. Btw it works fine.
entities:
- entity: sensor.shelly_homerseklet_halo
name: Emelet
- entity: sensor.heating_temperature
name: Fƶldszint
- entity: sensor.shelly_homerseklet_pince
name: Pince
- entity: sensor.dark_sky_temperature
decimal: 1
max: 40
min: 10
severity:
- color: '#0080FF'
from: '0'
to: '19'
- color: '#40bf40'
from: '19'
to: '22'
- color: '#bf9540'
from: '22'
to: '25'
- color: '#c0392b'
from: '25'
to: '40'
direction: up
height: 150px
width: 24px
positions:
indicator: inside
icon: 'off'
style: |-
.card-header {
font-size: 18px;
}
bar-card-value, bar-card-name {
font-size: 12px;
transform-origin: 0 0;
transform: rotate(270deg);
text-shadow: 1px 1px #0008;
white-space: nowrap;
}
bar-card-value {
margin-right: auto;
margin-left: 6px;
margin-bottom: auto;
margin-top: auto;
}
bar-card-name {
margin-right: auto;
margin-left: 0px;
margin-bottom: -130px;
margin-top: 130px;
right: 20px;
}
bar-card-currentbar, bar-card-backgroundbar {
border-radius: 12px;
border: 1px solid #DDD9;
}
stack: horizontal
title: HÅmĆ©rsĆ©klet
type: 'custom:bar-card'
Getting tons of this error after upgrading to the latest release:
2020-04-29 15:39:53 ERROR (MainThread) [frontend.js.latest.202004072] https://xxxxxxxx.duckdns.org/hacsfiles/bar-card/bar-card.js:5340:1 Uncaught SyntaxError: Unexpected token 'export'
2020-04-29 15:42:46 ERROR (MainThread) [frontend.js.latest.202004072] https://xxxxxxxx.duckdns.org/hacsfiles/bar-card/bar-card.js:5340:1 Uncaught SyntaxError: Unexpected token 'export'
2020-04-29 15:43:17 ERROR (MainThread) [frontend.js.latest.202004072] https://xxxxxxxx.duckdns.org/hacsfiles/bar-card/bar-card.js:5340:1 Uncaught SyntaxError: Unexpected token 'export'
And in the frontend i get āCustom element doesnāt exist: bar-card.ā
How to fix?
Go to:
Configuration -> Lovelace Dashboards->Resources
and check if you have it like this:
Yes i got it! Thanks
I had this set up fine before but I am guessing that I missed a change or something. What element do I have to change to have the right margin, match the left? The is in just a bit from the edge. I have the margins under bar-card-card both set for 7px. This used to work.
style: |-
bar-card-card {
margin-left: 7px;
margin-right: 7px;
margin-top: 10px;
}
bar-card-value {
font-size: 18px;
font-weight: bold;
margin-right: 215px;
}
bar-card-title {
font-size: 14px;
font-weight: bold;
margin-left: 20px;
}
Change bar-card-title to bar-card-name
Thanks. That actually fixed another issue. I was actually referring to this margin
You can use margin or padding right / left where you are using it no longer applies as I discovered. You will need to apply it the the bar-card-bar elements instead. I am not at my pc but background and another should get it done.
shouldnĀ“t
style: |
bar-card-background {
color: var(--dwains-theme-names);
}
change the color of the background?
Depends on what background youāre trying to change, but that element only contains all the bar elements including the bar background. You probably either want bar-card-backgroundbar
or ha-card
.
iĀ“m an idiot. got it working with
style: |
ha-card {
background-color: var(--dwains-theme-primary);
}
This is my current setup still on bar-card version 2.0.2. It uses horizontal and vertical stacks.
Is there a way to have the same thing with ver 3.x?
Thank you.
Having the name and value like that requires some custom CSS, however you can get the layout very easily by putting all the entities in a single barcard and setting columns
to 4.
After some fiddling around, I was able to get this:
Only two things missing now. To add a shadow to the sensor itself and to make the indicator arrow to be on the right side.
mind sharing your code?