Skip to content

Commit e039a8f

Browse files
authored
fix(RadioListGeneric): parameter ShowBorder not work (#7743)
* fix(CheckboxList): update no-border style * chore: bump version 10.4.0
1 parent 2fbddbd commit e039a8f

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

src/BootstrapBlazor/BootstrapBlazor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
4-
<Version>10.4.0-beta02</Version>
4+
<Version>10.4.0</Version>
55
</PropertyGroup>
66

77
<ItemGroup>

src/BootstrapBlazor/Components/Checkbox/CheckboxList.razor.scss

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@use "../../wwwroot/scss/variables" as *;
1+
@use "../../wwwroot/scss/variables" as *;
22

33
.checkbox-list {
44
--bb-checkbox-item-width: #{$bb-checkbox-item-width};
@@ -14,10 +14,6 @@
1414
flex-direction: column;
1515
}
1616

17-
&.form-control.no-border:not(.is-valid):not(.is-invalid) {
18-
border-color: transparent;
19-
}
20-
2117
&.form-control:not(.is-invalid):focus {
2218
box-shadow: none;
2319
}

src/BootstrapBlazor/Components/Input/BootstrapInput.razor.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.bb-clearable-input {
1+
.bb-clearable-input {
22
display: inline-flex;
33
align-items: center;
44
flex-grow: 1;
@@ -27,3 +27,9 @@
2727
display: block;
2828
}
2929
}
30+
31+
.form-control {
32+
&.no-border:not(.is-valid):not(.is-invalid) {
33+
border-color: transparent;
34+
}
35+
}

0 commit comments

Comments
 (0)