Sha256: 902bd11e6de518d1c378177da93ba12e9959cb51f5d2f7eacc072ef9e8ae5dda

Contents?: true

Size: 1.35 KB

Versions: 5

Compression:

Stored size: 1.35 KB

Contents

/*------------------------------------*\
    #PRODUCT-PRICES
\*------------------------------------*/

$product-prices-font: $secondary-font-family !default;
$product-prices-details-font-size: 16px !default;

$product-prices-details-decoration-offset: -4px !default;
$product-prices-details-decoration-height: 3px !default;
$product-prices-details-decoration-width: 100% !default;
$product-prices-details-decoration-color: $product-price-decoration-color !default;


.product-prices {
    font-family: $product-prices-font;
}

.product-prices--summary {}

.product-prices--details {
    margin-bottom: $vertical-margin;
    font-size: $product-prices-details-font-size;
}

    .product-prices__price {
        display: block;
        margin: 0;
        white-space: nowrap;

        .product-prices--details & {
            position: relative;
            display: inline;
            margin-right: $spacing-unit * 3;
            white-space: normal;

            &:first-of-type:after {
                position: absolute;
                bottom: $product-prices-details-decoration-offset;
                left: 0;
                width: $product-prices-details-decoration-width;
                height: $product-prices-details-decoration-height;
                background-color: $product-prices-details-decoration-color;
                content: '';
            }
        }
    }

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
workarea-nvy_theme-1.2.1 app/assets/stylesheets/workarea/storefront/components/_product_prices.scss
workarea-nvy_theme-1.2.0 app/assets/stylesheets/workarea/storefront/components/_product_prices.scss
workarea-nvy_theme-1.1.4 app/assets/stylesheets/workarea/storefront/components/_product_prices.scss
workarea-nvy_theme-1.1.3 app/assets/stylesheets/workarea/storefront/components/_product_prices.scss
workarea-nvy_theme-1.1.2 app/assets/stylesheets/workarea/storefront/components/_product_prices.scss