Exemple #1
0
 protected abstract void GenerateBadgeStyles(StringBuilder sb, Theme theme, ThemeBadgeOptions options);
Exemple #2
0
 protected override void GenerateBadgeStyles(StringBuilder sb, Theme theme, ThemeBadgeOptions options)
 {
     sb.Append($".badge").Append("{")
     .Append($"border-radius: {GetBorderRadius( theme, options?.BorderRadius )};")
     .AppendLine("}");
 }
 protected override void GenerateBadgeStyles(StringBuilder sb, Theme theme, ThemeBadgeOptions options)
 {
     sb.Append(".badge:not(.rounded-pill)").Append("{")
     .Append($"border-radius: {GetBorderRadius( theme, options?.BorderRadius, Var( ThemeVariables.BorderRadius ) )};")
     .AppendLine("}");
 }
 protected override void GenerateBadgeStyles(StringBuilder sb, Theme theme, ThemeBadgeOptions options)
 {
     throw new System.NotImplementedException();
 }