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
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public partial class PdfViewers
[Inject, NotNull]
private ToastService? ToastService { get; set; }

private bool _useGoogleDocs = true;
private bool _useGoogleDocs = false;

private Task OnLoaded() => ToastService.Success("Pdf Viewer", Localizer["PdfViewerToastSuccessfulContent"]);

Expand Down
2 changes: 1 addition & 1 deletion src/BootstrapBlazor/BootstrapBlazor.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<Version>9.7.1-beta05</Version>
<Version>9.7.1-beta06</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
7 changes: 6 additions & 1 deletion src/BootstrapBlazor/Components/Select/Select.razor.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.select,
.select,
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

issue (bug_risk): Remove invisible BOM character at start of line

The BOM character before .select may cause Sass parsing errors. Please remove it to ensure correct selector parsing.

.popover-dropdown {
--bb-dropdown-link-pre-active-bg: #{$bb-dropdown-link-pre-active-bg};
}
Expand Down Expand Up @@ -229,6 +229,11 @@
right: var(--bb-select-search-icon-right);
top: var(--bb-select-search-icon-top);
color: var(--bb-select-search-icon-color);
width: 1rem;
height: 1rem;
display: flex;
align-items: center;
justify-content: center;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ $bb-select-search-border-color: var(--bs-border-color);
$bb-select-search-padding-right: 30px;
$bb-select-search-icon-color: var(--bb-select-search-border-color);
$bb-select-search-icon-right: 26px;
$bb-select-search-icon-top: 19px;
$bb-select-search-icon-top: 18px;
$bb-select-search-height: 52px;
$bb-select-append-width: 30px;
$bb-select-append-color: #c0c4cc;
Expand Down