Sha256: e06f200d1c03c8e7aab7a15b72e3bd1d3a1f003509fd25f6934051e28f57c87a

Contents?: true

Size: 1.18 KB

Versions: 3

Compression:

Stored size: 1.18 KB

Contents

/**
 * @copyright   2010-2013, The Titon Project
 * @license     http://opensource.org/licenses/bsd-license.php
 * @link        http://titon.io
 */

@import "../common";

.#{$vendor-prefix}type-ahead {
    position: absolute;
    top: 0;
    left: 0;
    z-index: $typeAhead-zindex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;

    ul {
        @include reset-list;
        min-width: 200px;
    }

    li {
        > a {
            padding: $small-padding;
            line-height: 100%;
            display: block;
            text-decoration: none;
        }

        > a:hover,
        &.is-active a {}
    }
}

.#{$vendor-prefix}type-ahead-heading {
    padding: $small-padding;
    line-height: 100%;
    display: block;
    text-decoration: none;
}

.#{$vendor-prefix}type-ahead-highlight {
    background: #fff;
    padding: 0;
}

.#{$vendor-prefix}type-ahead-desc {
    display: block;
    font-size: .7rem;
}

.#{$vendor-prefix}type-ahead-shadow {
    position: relative;

    .is-shadow {
        color: gray;
    }

    .not-shadow {
        background: transparent;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        zoom: 1;
    }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
titon-toolkit-1.3.2 scss/toolkit/components/type-ahead.scss
titon-toolkit-1.3.1 scss/toolkit/components/type-ahead.scss
titon-toolkit-1.3.0 scss/toolkit/components/type-ahead.scss