Skip to content

Commit eb0acb7

Browse files
authored
Initialize (#19)
1 parent b596ed8 commit eb0acb7

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

CodeBeam.MudExtensions/Components/SpeedDial/MudSpeedDial.razor

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@namespace MudExtensions
22
@inherits MudComponentBase
3+
@using MudBlazor.Events
34

45
<div class="absolute" style="@Stylename" @onmouseenter="RootMouseEnter" @onmouseleave="WaitToClose">
56
<MudFab Color="@Color" OnClick="MainButtonClick" Icon="@GetIcon()" Size="@Size" />

CodeBeam.MudExtensions/Styles/Components/_wheel.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
$mud-palette-colors: primary, secondary, tertiary, info, success, warning, error, dark;
22

33
.mud-wheel {
4-
/*height: 240px;*/
54
overflow: hidden;
65
min-width: 0;
76
flex-grow: 1;
7+
user-select: none;
8+
-webkit-user-select: none;
89
}
910

1011
.mud-wheel-item {

CodeBeam.MudExtensions/Styles/MudExtensions.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,10 +190,11 @@
190190
border-color: var(--mud-palette-dark); }
191191

192192
.mud-wheel {
193-
/*height: 240px;*/
194193
overflow: hidden;
195194
min-width: 0;
196-
flex-grow: 1; }
195+
flex-grow: 1;
196+
user-select: none;
197+
-webkit-user-select: none; }
197198

198199
.mud-wheel-item {
199200
width: 100%;

CodeBeam.MudExtensions/Styles/MudExtensions.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)