diff --git a/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/Components/SelectListElement.razor.css b/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/Components/SelectListElement.razor.css
index e7c5314..9f39b89 100644
--- a/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/Components/SelectListElement.razor.css
+++ b/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/Components/SelectListElement.razor.css
@@ -11,13 +11,18 @@
}
/***** Navigation Theme *****/
-.navigation .selected {
- display: none;
+.navigation {
+ padding: 4px 8px;
+ width: 100%;
}
-.navigation .select-label:hover {
- color: var(--light-grey);
-}
+.navigation .selected {
+ display: none;
+}
+
+ .navigation:hover {
+ background: var(--violet-selected);
+ }
/***** Sort Theme *****/
.sort .select-label:hover {
diff --git a/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/SelectList.razor b/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/SelectList.razor
index 2a47bd3..0aee122 100644
--- a/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/SelectList.razor
+++ b/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/SelectList.razor
@@ -5,28 +5,33 @@
@Button
-
-
- @foreach (var item in Headers)
- {
-
- }
- @if (Headers.Any())
- {
-
- }
- @foreach (var item in Items)
- {
-
- }
-
+
+
+ @if (ContentVisile)
+ {
+
+ @foreach (var item in Headers)
+ {
+
+ }
+ @if (Headers.Any())
+ {
+
+ }
+ @foreach (var item in Items)
+ {
+
+ }
+
+ }
diff --git a/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/SelectList.razor.cs b/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/SelectList.razor.cs
index 415c24e..e8cca12 100644
--- a/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/SelectList.razor.cs
+++ b/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/SelectList.razor.cs
@@ -47,7 +47,6 @@ public partial class SelectList
selectedValue.IsSelected = true;
Value = selectedValue.Item;
await ValueChanged.InvokeAsync(Value);
- Close();
}
private async Task HandleHeaderClicked(SelectElement selectedValue)
diff --git a/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/SelectList.razor.css b/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/SelectList.razor.css
index 843330c..ead1cd6 100644
--- a/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/SelectList.razor.css
+++ b/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Components/Select/SelectList.razor.css
@@ -1,16 +1,23 @@
-.select-content {
+.select-list {
+ position: relative;
+}
+
+.select-container {
+ margin-top: 4px;
+ position: absolute;
+}
+
+.align-right {
+ right: 0;
+}
+
+.select-content {
overflow: hidden;
display: flex;
flex-direction: column;
border-radius: var(--small-radius);
- position: fixed;
animation-name: fade-in;
animation-duration: 0.4s;
- margin-top: 4px;
-}
-
-.invisible {
- display: none;
}
.line {
@@ -18,19 +25,16 @@
border-bottom: 2px solid var(--light-grey);
}
+
/***** Navigation Theme *****/
.select-content.navigation {
- gap: 4px;
background: var(--violet);
box-shadow: var(--drop-shadow);
- padding: 4px 6px;
}
/***** Sort Theme *****/
.select-content.sort {
- gap: 4px;
background: var(--black);
box-shadow: var(--drop-shadow);
- padding: 4px 6px;
}
diff --git a/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Layouts/Header/HeaderLayout.razor b/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Layouts/Header/HeaderLayout.razor
index dc9b0dc..9c1b917 100644
--- a/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Layouts/Header/HeaderLayout.razor
+++ b/src/GameIdeas/Client/GameIdeas.BlazorApp/Shared/Layouts/Header/HeaderLayout.razor
@@ -24,7 +24,8 @@
+ Theme="SelectListTheme.Navigation"
+ AlignRight=true>