ng-prime-tools 1.0.80 → 1.0.81
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.
|
@@ -4578,7 +4578,7 @@ class PTNavbarMenuComponent {
|
|
|
4578
4578
|
const backgroundPosition = this.navBarMenuConfig.pattern?.position || 'center';
|
|
4579
4579
|
const backgroundImage = imageUrl
|
|
4580
4580
|
? `linear-gradient(rgba(255, 255, 255, ${1 - parseFloat(transparency) / 100}),
|
|
4581
|
-
|
|
4581
|
+
rgba(255, 255, 255, ${1 - parseFloat(transparency) / 100})), url(${imageUrl})`
|
|
4582
4582
|
: '';
|
|
4583
4583
|
return {
|
|
4584
4584
|
backgroundColor: this.navBarMenuConfig.pattern ? 'transparent' : '#fff',
|
|
@@ -4586,6 +4586,10 @@ class PTNavbarMenuComponent {
|
|
|
4586
4586
|
backgroundSize: `${patternWidth} ${patternHeight}`,
|
|
4587
4587
|
backgroundPosition,
|
|
4588
4588
|
backgroundRepeat,
|
|
4589
|
+
height: this.navBarMenuConfig.height || 'auto',
|
|
4590
|
+
minHeight: this.navBarMenuConfig.minHeight || '56px',
|
|
4591
|
+
paddingTop: this.navBarMenuConfig.paddingTop || '0',
|
|
4592
|
+
paddingBottom: this.navBarMenuConfig.paddingBottom || '0',
|
|
4589
4593
|
};
|
|
4590
4594
|
}
|
|
4591
4595
|
toggleMenu() {
|