Skip to content

Commit d772413

Browse files
committed
2 parents 23123e3 + cedd988 commit d772413

File tree

89 files changed

+354
-188
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+354
-188
lines changed

BootstrapBlazor.slnx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<File Path=".gitignore" />
55
<File Path="exclusion.dic" />
66
<File Path="Framework.props" />
7+
<File Path="Version.props" />
78
</Folder>
89
<Folder Name="/docs/">
910
<File Path="README.md" />

delete-bin.cmd

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
@ECHO off
2+
cls
3+
4+
ECHO Deleting all BIN and OBJ folders...
5+
ECHO.
6+
7+
FOR /d /r . %%d in (bin,obj) DO (
8+
IF EXIST "%%d" (
9+
ECHO %%d | FIND /I "\node_modules\" > Nul && (
10+
ECHO.Skipping: %%d
11+
) || (
12+
ECHO.Deleting: %%d
13+
rd /s/q "%%d"
14+
)
15+
)
16+
)
17+
18+
ECHO.
19+
ECHO.BIN and OBJ folders have been successfully deleted. Press any key to exit.
20+
pause > nul

src/BootstrapBlazor/Components/Alert/Alert.razor.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use "../../wwwroot/scss/variables" as *;
2+
13
.alert {
24
--bb-alert-icon-margin-right: #{$bb-alert-icon-margin-right};
35
--bb-alert-bar-width: #{$bb-alert-bar-width};

src/BootstrapBlazor/Components/AnchorLink/AnchorLink.razor.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use "../../wwwroot/scss/variables" as *;
2+
13
.anchor-link {
24
--bb-anchor-link-margin-left: #{$bb-anchor-link-margin-left};
35
--bb-anchor-link-opacity: #{$bb-anchor-link-opacity};

src/BootstrapBlazor/Components/AutoComplete/AutoComplete.razor.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use "../../wwwroot/scss/variables" as *;
2+
13
.auto-complete {
24
--bb-ac-padding-right: #{$bb-ac-padding-right};
35
--bb-select-append-width: #{$bb-select-append-width};

src/BootstrapBlazor/Components/Avatar/Avatar.razor.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use "../../wwwroot/scss/variables" as *;
2+
13
.avatar {
24
--bb-avatar-width: #{$bb-avatar-width};
35
--bb-avatar-height: #{$bb-avatar-height};

src/BootstrapBlazor/Components/Badge/Badge.razor.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
.badge {
1+
@use "../../wwwroot/scss/variables" as *;
2+
3+
.badge {
24
&.text-bg-secondary, &.text-bg-light {
35
color: $bb-badge-color !important;
46
}

src/BootstrapBlazor/Components/Button/Button.razor.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use "../../wwwroot/scss/variables" as *;
2+
13
.btn {
24
--bs-btn-font-size: #{$bs-btn-font-size};
35
--bs-btn-focus-box-shadow: #{$bs-btn-focus-box-shadow};

src/BootstrapBlazor/Components/Button/DialButton.razor.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use "../../wwwroot/scss/variables" as *;
2+
13
.dial-button {
24
--bb-dial-list-zindex: #{$bb-dial-list-zindex};
35
--bb-dial-item-padding: #{$bb-dial-item-padding};

src/BootstrapBlazor/Components/Button/PopConfirmButtonContent.razor.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use "../../wwwroot/scss/variables" as *;
2+
13
.popover {
24
--bs-popover-min-width: #{$bb-popover-min-width};
35
--bb-popover-buttons-justify-content: #{$bb-popover-buttons-justify-content};

0 commit comments

Comments
 (0)