Share Calendar on Board without Showing Radarr/Sonarr
I would like to be able to share a calendar on my public facing "default" board without having Radarr and Sonarr available to the users.
I know that both are password protected but is there anyway to link Sonarr and Radarr to the calendar widget without having them added to the board as apps?
25 Replies
You still need the apps for the connection (this might change in the future)
But you can have the external link go nowhere, or loop back the the board; so that clicking it doesn't send them to radarr/sonarr.
You can also bury them in a category or sideboard.
For example could make a stealth app with the name, image, and external link of Google; but then have the internal link and integration set to sonarr/radarr
Put them in a category and hide that category using CSS
I'm not great with CSS. But I have slight general knowledge. I can look up how to hide something.
I'm just not quite sure how to find exactly what needs hiding.
I know it's somewhere in here.
This will completely hide the category, so if you need to access it again, don't forget to remove the CSS
Thank you!
If I already have a category, will it also hide that one as well?
Yep
One second I'll make one for specific category names
That would be amazing!
Yeah it would, but CSS doesn't allow selector by text...
Instead you can use the unique ID provided by mantine on the same line as the one for "dashboard-gs-category".
There's a chance they are different between the categories.
It's in the form of "mantine-d1a2ui", mantine followed by 6 alphanumeric characters
Oh I found it. I have two. One I want to hide. I've identified the one I need to hide.
Then in my css exemple you just need to replace dashboard-gs-category by that mantine UID
Keeping the dot
No need for dashboard-gs-category at all? Just the specific UID?
Yep
Hell yeah.
I copied the whole line. I don't need
div.mantine-em6nbc:nth-child(7) > div:nth-child(1) > div:nth-child(1)
Do note, if your server or container restarts, there's a high chance that unique code will change and you'll have to update the CSS
Just
mantine-em6nbc
?
Oh good to know.Just that mantine-em6nbc
.mantine-em6nbc {
display: none
}
hid both categories. 😦Shame :/
Can't do much about it for now, will definitely keep it in mind when reworking the CSS attribution
I appreciate it!
Just use dashboard-gs-category in the mean time so you don't need to update it on restarts
Yeah I'll do that. I don't really need the other category, so seems mine the way to go.
I appreciate all the help!
Wish I could have been able to provide a definitive solution ^^'
No no, its alright. This will do for now.