@sumaris-net/ngx-components 0.26.3 → 0.26.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7785,15 +7785,13 @@
7785
7785
  badge.style.display = 'flex';
7786
7786
  badge.style.alignItems = 'center';
7787
7787
  badge.style.justifyContent = 'center';
7788
- if (this.color !== 'accent') {
7789
- if (this.fill !== 'clear') {
7790
- badge.style.background = "var(--ion-color-" + this.color + ")";
7791
- badge.style.color = "var(--ion-color-" + this.color + "-contrast)";
7792
- }
7793
- else {
7794
- badge.style.color = "var(--ion-color-" + this.color + ")";
7795
- badge.style.background = 'transparent';
7796
- }
7788
+ if (this.fill !== 'clear') {
7789
+ badge.style.background = "var(--ion-color-" + this.color + ")";
7790
+ badge.style.color = "var(--ion-color-" + this.color + "-contrast)";
7791
+ }
7792
+ else {
7793
+ badge.style.color = "var(--ion-color-" + this.color + ")";
7794
+ badge.style.background = 'transparent';
7797
7795
  }
7798
7796
  if (this.matIcon) {
7799
7797
  badge.innerHTML = "<i class=\"material-icons\" style=\"font-size: " + fontSize + ";\">" + this.matIcon + "</i>";