You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yep. The forks are in sync. I will have to look at this. The issue that was resolved had to do with setting the color directly on the card and not using a theme.
Code which does not work when $Theme is used with New-UDDashboard -Theme
$Theme = New-UDTheme -Name 'Example' -Definition @{ UDCard = @{ BackgroundColor = "rgb(37,37,37)" FontColor = "rgb(255,255,255)" } }
Workaround which works...
$Theme = New-UDTheme -Name 'Example' -Definition @{ '.card-content' = @{ 'background-color' = "rgb(37,37,37)" } '.card-title' = @{ 'color' = "rgb(255,255,255)" } }
Seems similar to issue mentioned in https://forums.universaldashboard.io/t/new-udcard-not-accepting-colors/303
Just wondering if all fixes are committed to both community and enterprise?
The text was updated successfully, but these errors were encountered: