Skip to content

kiwi-electronics.com - Disable carousel by denilsonsa

Details

Authordenilsonsa

LicensePublic Domain

Categorykiwi-electronics

Created

Updated

Code size1.1 kB

Code checksum94f287f2

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Disables the carousel from the product pages. Viewing the product photos is now much easier.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           kiwi-electronics.com - Disable carousel
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    Disables the carousel from the product pages. Viewing the product photos is now much easier.
@author         Denilson Sá Maia
==/UserStyle== */

@-moz-document domain("kiwi-electronics.com") {
    html .product-image.direction-vertical {
        flex-direction: column;
    }
    html .product-image.direction-vertical .swiper.main-image {
        width: auto !important;
    }
    html .product-image.direction-vertical .swiper.main-image .swiper-controls {
        display: none !important;
    }
    html .product-image.direction-vertical .swiper.main-image .swiper-container .swiper-wrapper {
        transform: none !important;
        flex-direction: column;
    }
    html .product-image.direction-vertical .swiper.additional-images {
        display: none;
        /*
        width: auto !important;
        height: auto !important;
        */
    }
    html .product-image.direction-vertical .swiper-container .swiper-wrapper {
        /* flex-direction: row; */
    }
}

Reviews

No reviews yet.