Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<PackageReference Include="BootstrapBlazor.Live2DDisplay" Version="9.0.1" />
<PackageReference Include="BootstrapBlazor.Markdown" Version="9.0.2" />
<PackageReference Include="BootstrapBlazor.MaterialDesign" Version="9.0.1" />
<PackageReference Include="BootstrapBlazor.MeiliSearch" Version="9.1.10" />
<PackageReference Include="BootstrapBlazor.MeiliSearch" Version="9.1.11" />
<PackageReference Include="BootstrapBlazor.Mermaid" Version="9.0.4" />
<PackageReference Include="BootstrapBlazor.Middleware" Version="9.0.0" />
<PackageReference Include="BootstrapBlazor.MindMap" Version="9.1.6" />
Expand Down
20 changes: 18 additions & 2 deletions src/BootstrapBlazor.Server/Components/Components/Header.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,26 @@
}

::deep .bb-g-search {
--bs-border-color: var(--bb-header-dropdown-border-color);
--bb-border-hover-color: var(--bb-header-dropdown-border-hover-color);
width: var(--bb-header-select-width);
margin-bottom: var(--bb-header-search-margin-bottom);
margin-block-end: var(--bb-header-search-margin-bottom);
Copy link

Copilot AI Oct 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed from margin-bottom to margin-block-end for better internationalization support, but this should be consistently applied throughout the file for similar properties.

Copilot uses AI. Check for mistakes.
color: var(--bb-header-dropdown-color);
font-size: 0.875rem;
}

::deep .bb-g-search .search-dialog-icon {
font-size: 0.875rem;
}

::deep .bb-g-search > input {
padding: 2px 0;
}

::deep .bb-g-search > input::placeholder {
color: var(--bb-header-dropdown-color);
}
Comment on lines +75 to +85
Copy link

Copilot AI Oct 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inconsistent CSS indentation. Lines 75-85 should have consistent indentation - either all at the same level or properly nested to reflect the CSS hierarchy.

Suggested change
::deep .bb-g-search .search-dialog-icon {
font-size: 0.875rem;
}
::deep .bb-g-search > input {
padding: 2px 0;
}
::deep .bb-g-search > input::placeholder {
color: var(--bb-header-dropdown-color);
}
::deep .bb-g-search .search-dialog-icon {
font-size: 0.875rem;
}
::deep .bb-g-search > input {
padding: 2px 0;
}
::deep .bb-g-search > input::placeholder {
color: var(--bb-header-dropdown-color);
}

Copilot uses AI. Check for mistakes.

@media (min-width: 768px) {
.navbar-header {
position: sticky;
Expand All @@ -77,7 +93,7 @@
}

::deep .bb-g-search {
margin-bottom: 0;
margin-block-end: 0;
margin-inline-end: .5rem;
}
}
Expand Down
1 change: 0 additions & 1 deletion src/BootstrapBlazor/wwwroot/scss/components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@
@use "../../Components/Marquee/Marquee.razor.scss";
@use "../../Components/Waterfall/Waterfall.razor.scss";
@use "../../Components/Watermark/Watermark.razor.scss";
@use "./meilisearch.scss";

[dir="rtl"] .card-collapse-bar:not([aria-expanded=true]) > .card-collapse-arrow {
transform: rotate(180deg);
Expand Down
43 changes: 0 additions & 43 deletions src/BootstrapBlazor/wwwroot/scss/meilisearch.scss

This file was deleted.

Loading