Skip to content

Commit

Permalink
Inverted font color on status bar and file menu
Browse files Browse the repository at this point in the history
  • Loading branch information
jschick04 authored and bill-long committed Jul 18, 2024
1 parent 488602f commit 2f84914
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 18 deletions.
7 changes: 6 additions & 1 deletion src/EventLogExpert/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,14 @@
<Application.Resources>
<ResourceDictionary>

<Color x:Key="PageBackgroundColor">#3C64E7</Color>
<Color x:Key="PageBackgroundColor">#426EE2</Color>
<Color x:Key="PrimaryTextColor">#000</Color>

<Style TargetType="NavigationPage">
<Setter Property="BarBackgroundColor" Value="{DynamicResource PageBackgroundColor}" />
<Setter Property="BarTextColor" Value="{DynamicResource PrimaryTextColor}" />
</Style>

<Style TargetType="Label">
<Setter Property="TextColor" Value="{DynamicResource PrimaryTextColor}" />
<Setter Property="FontFamily" Value="OpenSansRegular" />
Expand Down
2 changes: 1 addition & 1 deletion src/EventLogExpert/Components/StatusBar.razor.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.status-bar {
background-color: var(--clr-statusbar);
color: var(--clr-white);
color: var(--clr-black);
padding-left: 5px;
}

Expand Down
17 changes: 1 addition & 16 deletions src/EventLogExpert/wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
--clr-green: #5AC358;
--clr-yellow: #F8C84B;

--clr-statusbar: #3C64E7;
--clr-statusbar: #426EE2;

--background-dark: #222222;
--background-darkgray: #353535;
Expand Down Expand Up @@ -281,21 +281,6 @@ i.bi.bi-star-fill { color: var(--clr-yellow); }
margin: 0 0.5rem;

& > .input { margin: 0; }

& span {
display: inherit;
user-select: none;
}

& label > i {
position: absolute;
right: 2px;
cursor: pointer;

color: #fff;

&[data-toggle="true"] { transform: translateY(10%) rotate(-180deg); }
}
}

.dropdown-list {
Expand Down

0 comments on commit 2f84914

Please sign in to comment.