diff options
| author | Isaac Marovitz <42140194+IsaacMarovitz@users.noreply.github.com> | 2023-01-12 07:09:32 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-12 12:09:32 +0000 |
| commit | fe29a2ff6e7ae94b9e1f8cedc93d7fd0187de3cf (patch) | |
| tree | f5620fb38a4e9edeb9073b8453917d59f6dd0080 /Ryujinx.Ava/Assets | |
| parent | e9a173e00ce199117f73626c075f89feedfb31ce (diff) | |
Ava UI: Settings Adjustments (#4273)
* Visual adjustments
* Match border to rest of app
* Fix overlapping controls
* Fix
* Fix
Diffstat (limited to 'Ryujinx.Ava/Assets')
| -rw-r--r-- | Ryujinx.Ava/Assets/Locales/en_US.json | 7 | ||||
| -rw-r--r-- | Ryujinx.Ava/Assets/Styles/BaseDark.xaml | 1 | ||||
| -rw-r--r-- | Ryujinx.Ava/Assets/Styles/BaseLight.xaml | 1 | ||||
| -rw-r--r-- | Ryujinx.Ava/Assets/Styles/Styles.xaml | 7 |
4 files changed, 11 insertions, 5 deletions
diff --git a/Ryujinx.Ava/Assets/Locales/en_US.json b/Ryujinx.Ava/Assets/Locales/en_US.json index 0c767871..24f44dee 100644 --- a/Ryujinx.Ava/Assets/Locales/en_US.json +++ b/Ryujinx.Ava/Assets/Locales/en_US.json @@ -119,7 +119,7 @@ "SettingsTabSystemAudioBackendSoundIO": "SoundIO", "SettingsTabSystemAudioBackendSDL2": "SDL2", "SettingsTabSystemHacks": "Hacks", - "SettingsTabSystemHacksNote": " (may cause instability)", + "SettingsTabSystemHacksNote": "May cause instability", "SettingsTabSystemExpandDramSize": "Use alternative memory layout (Developers)", "SettingsTabSystemIgnoreMissingServices": "Ignore Missing Services", "SettingsTabGraphics": "Graphics", @@ -157,7 +157,8 @@ "SettingsTabLoggingEnableGuestLogs": "Enable Guest Logs", "SettingsTabLoggingEnableFsAccessLogs": "Enable Fs Access Logs", "SettingsTabLoggingFsGlobalAccessLogMode": "Fs Global Access Log Mode:", - "SettingsTabLoggingDeveloperOptions": "Developer Options (WARNING: Will reduce performance)", + "SettingsTabLoggingDeveloperOptions": "Developer Options", + "SettingsTabLoggingDeveloperOptionsNote": "WARNING: Will reduce performance", "SettingsTabLoggingGraphicsBackendLogLevel": "Graphics Backend Log Level:", "SettingsTabLoggingGraphicsBackendLogLevelNone": "None", "SettingsTabLoggingGraphicsBackendLogLevelError": "Error", @@ -618,4 +619,4 @@ "UserProfilesRecoverEmptyList": "No profiles to recover", "UserEditorTitle" : "Edit User", "UserEditorTitleCreate" : "Create User" -} +}
\ No newline at end of file diff --git a/Ryujinx.Ava/Assets/Styles/BaseDark.xaml b/Ryujinx.Ava/Assets/Styles/BaseDark.xaml index 8991808f..c7f6266f 100644 --- a/Ryujinx.Ava/Assets/Styles/BaseDark.xaml +++ b/Ryujinx.Ava/Assets/Styles/BaseDark.xaml @@ -60,5 +60,6 @@ <Color x:Key="MenuFlyoutPresenterBorderColor">#3D3D3D</Color> <Color x:Key="AppListBackgroundColor">#0FFFFFFF</Color> <Color x:Key="AppListHoverBackgroundColor">#1EFFFFFF</Color> + <Color x:Key="SecondaryTextColor">#A0FFFFFF</Color> </Styles.Resources> </Styles>
\ No newline at end of file diff --git a/Ryujinx.Ava/Assets/Styles/BaseLight.xaml b/Ryujinx.Ava/Assets/Styles/BaseLight.xaml index 130d2bd4..70cb051c 100644 --- a/Ryujinx.Ava/Assets/Styles/BaseLight.xaml +++ b/Ryujinx.Ava/Assets/Styles/BaseLight.xaml @@ -52,5 +52,6 @@ <Color x:Key="MenuFlyoutPresenterBorderColor">#C1C1C1</Color> <Color x:Key="AppListBackgroundColor">#b3ffffff</Color> <Color x:Key="AppListHoverBackgroundColor">#80cccccc</Color> + <Color x:Key="SecondaryTextColor">#A0000000</Color> </Styles.Resources> </Styles>
\ No newline at end of file diff --git a/Ryujinx.Ava/Assets/Styles/Styles.xaml b/Ryujinx.Ava/Assets/Styles/Styles.xaml index fc4e9ddd..04412bf2 100644 --- a/Ryujinx.Ava/Assets/Styles/Styles.xaml +++ b/Ryujinx.Ava/Assets/Styles/Styles.xaml @@ -56,8 +56,8 @@ <Style Selector="Border.settings"> <Setter Property="Background" Value="{DynamicResource ThemeDarkColor}" /> <Setter Property="BorderBrush" Value="{DynamicResource MenuFlyoutPresenterBorderColor}" /> - <Setter Property="BorderThickness" Value="2" /> - <Setter Property="CornerRadius" Value="3" /> + <Setter Property="BorderThickness" Value="1" /> + <Setter Property="CornerRadius" Value="5" /> </Style> <Style Selector="Image.small"> <Setter Property="Width" Value="50" /> @@ -303,6 +303,9 @@ <Color x:Key="ThemeControlBorderColor">#FF505050</Color> <Color x:Key="VsyncEnabled">#FF2EEAC9</Color> <Color x:Key="VsyncDisabled">#FFFF4554</Color> + <Color x:Key="AppListBackgroundColor">#0FFFFFFF</Color> + <Color x:Key="AppListHoverBackgroundColor">#1EFFFFFF</Color> + <Color x:Key="SecondaryTextColor">#A0FFFFFF</Color> <x:Double x:Key="ScrollBarThickness">15</x:Double> <x:Double x:Key="FontSizeSmall">8</x:Double> <x:Double x:Key="FontSizeNormal">10</x:Double> |
