Hi.
Time ago, i got a css (with "display:none" way) to completely hide the system buttons in a classic XML Dashboard,
Is there a css way to hide ONLY some panels (with their own IDs) buttons and not from entire Dashboard?
Since we are, is a css way to hide/display every single button from the 4?
I look deeply into the browser(s) debug/develop panels, but can't point to those **bleep** 4 icons 😆😏😎
Thanks.
Give your panel an id e.g. "panel_id", then you can select the address elements in the dashboard element footer (or hide the whole footer by not selecting any address elements)
#panel_id .dashboard-element-footer a[class="btn-pill export"] {
display: none !important;
}
Gosh!!! What a fool 🤕 i was addressing the "id" element to a "class" element
.panel_id .....
🤦🤦🤦 that's why did not work 😂
Maybe i need a review of css coding 😎
Thanks a lot, addressing to "id" element works, obviously,
#panel_id .....
👍👍👍
Give your panel an id e.g. "panel_id", then you can select the address elements in the dashboard element footer (or hide the whole footer by not selecting any address elements)
#panel_id .dashboard-element-footer a[class="btn-pill export"] {
display: none !important;
}