Feature: Add advanced filter #9
@@ -9,7 +9,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.duplicate {
|
.duplicate {
|
||||||
display: flex;
|
display: none;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
}
|
}
|
||||||
@@ -20,3 +20,9 @@
|
|||||||
height: 24px;
|
height: 24px;
|
||||||
align-content: center
|
align-content: center
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1000px) {
|
||||||
|
.duplicate {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -43,6 +43,7 @@
|
|||||||
<div class="select-container">
|
<div class="select-container">
|
||||||
<MultipleSelectList TItem="string"
|
<MultipleSelectList TItem="string"
|
||||||
Items="Plateforms"
|
Items="Plateforms"
|
||||||
|
Placeholder="@ResourcesKey.Platforms"
|
||||||
@bind-Values=GameFilterParams.Plateforms
|
@bind-Values=GameFilterParams.Plateforms
|
||||||
Theme="SelectListTheme.Filter" />
|
Theme="SelectListTheme.Filter" />
|
||||||
</div>
|
</div>
|
||||||
@@ -50,6 +51,7 @@
|
|||||||
<div class="select-container">
|
<div class="select-container">
|
||||||
<MultipleSelectList TItem="string"
|
<MultipleSelectList TItem="string"
|
||||||
Items="Genres"
|
Items="Genres"
|
||||||
|
Placeholder="@ResourcesKey.Genres"
|
||||||
@bind-Values=GameFilterParams.Genres
|
@bind-Values=GameFilterParams.Genres
|
||||||
Theme="SelectListTheme.Filter" />
|
Theme="SelectListTheme.Filter" />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
.container {
|
.container {
|
||||||
|
margin-top: 20px;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
@typeparam TItem
|
@typeparam TItem
|
||||||
|
|
||||||
<div class="select-list" tabindex="1001" @ref="BaseElement">
|
<div class="select-list" tabindex="1001" @ref="BaseElement">
|
||||||
<div class="select-button" @onfocusin=HandleFocusIn @onfocusout=HandleFocusOut>
|
<div class="select-button @(Enum.GetName(Theme)?.ToLower())" @onfocusin=HandleFocusIn @onfocusout=HandleFocusOut>
|
||||||
<SearchInput @ref=SearchInput
|
<SearchInput @ref=SearchInput
|
||||||
Icon="SearchInputIcon.Dropdown"
|
Icon="SearchInputIcon.Dropdown"
|
||||||
Placeholder="@Placeholder"
|
Placeholder="@Placeholder"
|
||||||
|
|||||||
@@ -57,3 +57,9 @@
|
|||||||
min-width: 150px;
|
min-width: 150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::deep .select-button.advancedfilter .search-container {
|
||||||
|
height: 24px;
|
||||||
|
width: 210px;
|
||||||
|
border: 2px solid var(--low-white);
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user