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.27 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.26 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.45 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.25 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.23 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.44 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.22 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.43 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.21 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.42 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.20 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.41 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.19 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.40 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.18 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.39 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.17 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.38 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.5.16 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss
workarea-storefront-3.4.37 app/assets/stylesheets/workarea/storefront/components/_checkout_progress.scss