diff --git a/src/views/galleria/GalleriaIndicatorDemo.vue b/src/views/galleria/GalleriaIndicatorDemo.vue index 82b0ad927..6b43231d5 100755 --- a/src/views/galleria/GalleriaIndicatorDemo.vue +++ b/src/views/galleria/GalleriaIndicatorDemo.vue @@ -63,7 +63,7 @@ @@ -173,6 +173,23 @@ export default { }); } } + + + +::v-deep { + .custom-indicator-galleria { + .indicator-text { + color: #e9ecef; + cursor: pointer; + } + + .p-highlight { + .indicator-text { + color: var(--primary-color); + } + } + } +} @@ -215,4 +232,21 @@ export default { }); } } - \ No newline at end of file + + + diff --git a/src/views/galleria/GalleriaThumbnailDemo.vue b/src/views/galleria/GalleriaThumbnailDemo.vue index 8a3abd40e..fd83c11d1 100755 --- a/src/views/galleria/GalleriaThumbnailDemo.vue +++ b/src/views/galleria/GalleriaThumbnailDemo.vue @@ -19,7 +19,7 @@

Positioned at Left

- + @@ -31,7 +31,7 @@

Positioned at Right

- + @@ -69,7 +69,7 @@ </Galleria> <h3>Positioned at Left</h3> -<Galleria :value="images" :responsiveOptions="responsiveOptions2" :numVisible="4" thumbnailsPosition="left" style="max-width: 610px"> +<Galleria :value="images" :responsiveOptions="responsiveOptions2" :numVisible="4" thumbnailsPosition="left" style="max-width: 640px"> <template #item="slotProps"> <img :src="slotProps.item.previewImageSrc" :alt="slotProps.item.alt" style="width: 100%; display: block;" /> </template> @@ -81,7 +81,7 @@ </Galleria> <h3>Positioned at Right</h3> -<Galleria :value="images" :responsiveOptions="responsiveOptions2" :numVisible="4" thumbnailsPosition="right" style="max-width: 610px"> +<Galleria :value="images" :responsiveOptions="responsiveOptions2" :numVisible="4" thumbnailsPosition="right" style="max-width: 640px"> <template #item="slotProps"> <img :src="slotProps.item.previewImageSrc" :alt="slotProps.item.alt" style="width: 100%; display: block;" /> </template>