Sha256: 7e2a2f2608ec6785075c327f6c38a0d8560cecdca784369dd92a582ee9e0fb0f

Contents?: true

Size: 1.09 KB

Versions: 6

Compression:

Stored size: 1.09 KB

Contents

/**
 * @copyright   2010-2014, The Titon Project
 * @license     http://opensource.org/licenses/BSD-3-Clause
 * @link        http://titon.io
 */

@import "../common";

.#{$vendor-prefix}progress {
    overflow: hidden;
    position: relative;

    @include is-small {
        .#{$vendor-prefix}progress-bar {
            height: 1rem;
            line-height: 1rem;
            font-size: $small-size;
        }
    }

    @include is-large {
        .#{$vendor-prefix}progress-bar {
            height: 2rem;
            line-height: 2rem;
            font-size: $large-size;
        }
    }

    @include clear-fix;
}

.#{$vendor-prefix}progress-bar {
    height: 1.5rem;
    line-height: 1.5rem;
    overflow: hidden;
    position: relative;
    text-align: center;
    font-size: $medium-size;
    float: left;
    transition: width $progress-transition, background $progress-transition;
}

.#{$vendor-prefix}progress.#{$shape-round-class} {
    border-radius: $round;

    .#{$vendor-prefix}progress-bar:first-child {
        border-top-left-radius: $round;
        border-bottom-left-radius: $round;
    }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
titon-toolkit-1.5.3 scss/toolkit/components/progress.scss
titon-toolkit-1.5.2 scss/toolkit/components/progress.scss
titon-toolkit-1.5.1 scss/toolkit/components/progress.scss
titon-toolkit-1.5.0 scss/toolkit/components/progress.scss
titon-toolkit-1.4.1 scss/toolkit/components/progress.scss
titon-toolkit-1.4.0 scss/toolkit/components/progress.scss