Skip to content

Commit

Permalink
Merge pull request #71 from Eficaz-Sistemas/master
Browse files Browse the repository at this point in the history
Blazor Release 6.1.6-preview001
  • Loading branch information
HClausing authored Jun 13, 2023
2 parents 29ba1c9 + e8ecac8 commit 3cdd496
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@inherits MudBlazor.MudComponentBase

<MudBlazor.MudPaper Elevation="0" Outlined Class="@Classname" Style="@StyleName">
<MudBlazor.MudText Typo="MudBlazor.Typo.caption" Style="font-size:0.65rem">
<MudBlazor.MudText Typo="MudBlazor.Typo.caption" Style="font-size:0.65rem" Class="mb-2">
@Title
</MudBlazor.MudText>
@ChildContent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,13 @@ public partial class GroupPanel : MudBlazor.MudComponentBase
[Parameter] public string Title { get; set; } = "Group Title";

protected string Classname =>
new CssBuilder()
new CssBuilder("ef-group-panel")
.AddClass(Class)
.AddClass("ma-2 px-2 pb-2")
.Build();

protected string StyleName =>
new StyleBuilder()
.AddStyle(Style)
.AddStyle("background-color: var(--mud-palette-background-grey)")
.Build();


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ public partial class Navigator : MudBlazor.MudBaseItemsControl<NavigatorPage>


//FRAGMENTS:
[Parameter]
public RenderFragment HeaderContent { get; set; }
[Parameter] public RenderFragment HeaderContent { get; set; }

protected internal List<NavigatorPage> Pages = new();
public RenderFragment FooterContent { get; set; }


[Parameter] public RenderFragment FooterContent { get; set; }

//HELPERS:

Expand Down
6 changes: 3 additions & 3 deletions src/Web/EficazFramework.Blazor/EficazFramework.Blazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<Version>6.1.5</Version>
<AssemblyVersion>6.1.5</AssemblyVersion>
<FileVersion>6.1.5</FileVersion>
<Version>6.1.6-preview001</Version>
<AssemblyVersion>6.1.6.1</AssemblyVersion>
<FileVersion>6.1.6.1</FileVersion>
<RootNamespace>EficazFramework</RootNamespace>
<Authors>Eficaz Sistemas</Authors>
<Company>Eficaz Sistemas de Gestão e Inteligência Tributária</Company>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.ef-group-panel {
background-color: var(--mud-palette-background-grey);
padding-top: 8px;
padding-left: 16px;
padding-right: 16px;
padding-bottom: 16px;
}
1 change: 1 addition & 0 deletions src/Web/EficazFramework.Blazor/Styles/EfCore.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@import 'Components/Input';
@import 'Components/GroupPanel';
@import 'Components/Mdi';
@import 'Components/Navigator';
@import 'Components/Table';
Expand Down
10 changes: 9 additions & 1 deletion src/Web/EficazFramework.Blazor/wwwroot/css/EficazFramework.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3cdd496

Please sign in to comment.