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
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<Version>9.0.3</Version>
<Version>9.0.4</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down
13 changes: 13 additions & 0 deletions src/components/BootstrapBlazor.SummerNote/wwwroot/css/editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,19 @@
display: block;
}

.modal-body .note-form-group:not(:last-child) {
margin-bottom: 0.5rem;
}

.note-form-label,
.note-group-select-from-files {
margin-bottom: .5rem;
}

.form-check sn-checkbox-open-in-new-window .form-check-input {
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

issue (bug_risk): Missing . before sn-checkbox-open-in-new-window in selector

Add a . before sn-checkbox-open-in-new-window so it targets a class, e.g.: .form-check .sn-checkbox-open-in-new-window .form-check-input.

margin-right: .5rem;
}

[data-bs-theme='dark'] .editor .note-btn {
--bs-btn-bg: #404349;
--bs-btn-hover-bg: #51545a;
Expand Down