Skip to content

Commit

Permalink
Fixes #1467 (#1468)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdriscoll authored Jan 22, 2020
1 parent abc0278 commit 3940b90
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions src/UniversalDashboard.UITest/Integration/Theme.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ $Driver = Start-SeFirefox

Describe "Theme" {

Context "DarkRounded" {
It "serializes correctly" {
Get-UDTheme -Name 'DarkRounded' | Should not be $null
}
}

Context "Controls" {

$AzureTheme = Get-UDTheme -Name 'Azure'
Expand Down
4 changes: 2 additions & 2 deletions src/UniversalDashboard/New-UDModuleManifest.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ param(

Remove-Item (Join-Path $outputDirectory 'UniversalDashboard.Community.psd1') -ErrorAction SilentlyContinue -Force

$version = "2.8.2"
$version = "2.8.3"
#$prerelease = "-beta2"

$manifestParameters = @{
Guid = 'c7894dd1-357e-4474-b8e1-b416afd70c2d'
Path = "$outputDirectory\UniversalDashboard.Community.psd1"
Author = "Adam Driscoll"
CompanyName = "Ironman Software, LLC"
Copyright = "2019 Ironman Software, LLC"
Copyright = "2020 Ironman Software, LLC"
RootModule = "UniversalDashboard.psm1"
Description = "Cross-platform module for developing websites and REST APIs."
ModuleVersion = $version
Expand Down
2 changes: 1 addition & 1 deletion src/UniversalDashboard/Themes/DarkRounded.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
}

'.sidenav .collapsible-body' = @{
'background-color' = $PrimaryColor
'background-color' = "#bababa"
}

'.sidenav .collapsible-header'= @{
Expand Down

0 comments on commit 3940b90

Please sign in to comment.