Sha256: eb088fad69228a47ed391df555d7dacc8f4d935cf13e77a1ed8bc85d967d2ca3

Contents?: true

Size: 1.14 KB

Versions: 62

Compression:

Stored size: 1.14 KB

Contents

/*------------------------------------*\
    #CHECKOUT-PROGRESS
\*------------------------------------*/

$checkout-progress-color:            $font-color !default;
$checkout-progress-active-color:     $font-color !default;
$checkout-progress-completed-color:  darken($gray, 50) !default;


.checkout-progress {
    @extend %list-reset;
    margin-bottom: $vertical-margin;
    text-align: center;
}

    /**
     * 1. a `.checkout-progress__step` is considered "completed" until:
     * 2. it becomes activated, or
     * 3. appears after the activated step
     */
    .checkout-progress__step {
        color: $checkout-progress-completed-color; /* [1] */

        @include respond-to($medium-breakpoint) {
            display: inline-block;
            margin: 0 $spacing-unit;
        }
    }

    .checkout-progress__step--active { /* [2] */
        color: $checkout-progress-active-color;
        font-weight: bold;

        ~ .checkout-progress__step { /* [3] */
            color: $checkout-progress-color;
        }
    }

        /**
         * 1. the link only appears within the "completed" state
         */
        .checkout-progress__link {} /* [1] */

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-storefront-3.5.15 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.36 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.14 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.35 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.13 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.34 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.12 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.33 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.11 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.10 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.32 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.9 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.31 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.8 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.30 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.7 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.29 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.6 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.28 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.5 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss