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
20 changes: 15 additions & 5 deletions examples/Demo/Shared/Pages/Home/Videos.razor
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,20 @@
<p>Every now and then, we do guests appearances in videos to promote the library and show a bit more on how it works. See the overview below for our most recent appearances</p>

<FluentGrid Spacing="7">
<FluentGridItem xs="12" sm="4">
<div class="youtube-title">.NET Conf 2024</div>
<div class="youtube-responsive">
<iframe src="https://www.youtube.com/embed/w8BKS1a8MnU?si=ugsYLTHGhBrXdAhn" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</FluentGridItem>
<FluentGridItem xs="12" sm="4">
</FluentGridItem>
<FluentGridItem xs="12" sm="4">
</FluentGridItem>
<FluentGridItem xs="12" sm="4">
<div class="youtube-title">ASP.NET Community Standup 2024</div>
<div class="youtube-responsive">
<iframe src="https://www.youtube.com/embed/1fveBAi6Q7I" frameborder="0" allowfullscreen></iframe>
<iframe src="https://www.youtube.com/embed/1fveBAi6Q7I" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</FluentGridItem>
<FluentGridItem xs="12" sm="4">
Expand All @@ -22,25 +32,25 @@
<FluentGridItem xs="12" sm="4">
<div class="youtube-title" style="overflow: unset;">Open at Microsoft - 2024</div>
<div class="youtube-responsive">
<iframe src="https://www.youtube.com/embed/lUZ5mrg2Q8k" frameborder="0" allowfullscreen></iframe>
<iframe src="https://www.youtube.com/embed/lUZ5mrg2Q8k" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</FluentGridItem>
<FluentGridItem xs="12" sm="4">
<div class="youtube-title"></div>
<div class="youtube-responsive">
<iframe src="https://www.youtube.com/embed/jOv9ioCVDFU" frameborder="0" allowfullscreen></iframe>
<iframe src="https://www.youtube.com/embed/jOv9ioCVDFU" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</FluentGridItem>
<FluentGridItem xs="12" sm="4">
<div class="youtube-title"></div>
<div class="youtube-responsive">
<iframe src="https://www.youtube.com/embed/HTUemhV9W-M" frameborder="0" allowfullscreen></iframe>
<iframe src="https://www.youtube.com/embed/HTUemhV9W-M" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</FluentGridItem>
<FluentGridItem xs="12" sm="4">
<div class="youtube-title">.NET Conf 2023</div>
<div class="youtube-responsive">
<iframe src="https://www.youtube.com/embed/a0xOqNemRoY" frameborder="0" allowfullscreen></iframe>
<iframe src="https://www.youtube.com/embed/a0xOqNemRoY" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</FluentGridItem>
<FluentGridItem xs="12" sm="4">
Expand Down
1 change: 0 additions & 1 deletion src/Core/Components/Rating/FluentRating.razor
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
@if (!string.IsNullOrEmpty(Label) || LabelTemplate is not null)
{
<FluentInputLabel ForId="@Id" Label="@Label" Required="@Required">@LabelTemplate</FluentInputLabel>
_labelUsed = true;
}

<div Id="@Id"
Expand Down
1 change: 0 additions & 1 deletion src/Core/Components/Rating/FluentRating.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ public partial class FluentRating : FluentInputBase<int>
{
private bool _updatingCurrentValue = false;
private int? _hoverValue = null;
private bool _labelUsed;

/// <summary />
protected override string? ClassValue => new CssBuilder(base.ClassValue)
Expand Down
Loading