Sha256: 8fbdaa5eb2ec8b45c8c4c1da0c69cc4275dae615e0180c579c437b769d33ee56

Contents?: true

Size: 762 Bytes

Versions: 5

Compression:

Stored size: 762 Bytes

Contents

/*------------------------------------*\
    #TEXT-BUTTON
\*------------------------------------*/

$text-button-color: $link-color !default;
$text-button-hover-color: $link-color-hover !default;


.text-button {
    @extend %button-reset;
    color: $text-button-color;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;

    &:focus {
        color: $text-button-hover-color;
    }

    &:hover {
        color: $text-button-hover-color;
        text-decoration: underline;
    }
}

.text-button--block {
    display: block;
}

    .text-button__icon {
        width: 1em;
        height: 1em;
        fill: $text-button-color;
        vertical-align: middle;

        &:hover {
            color: $text-button-hover-color;
        }
    }

Version data entries

5 entries across 5 versions & 1 rubygems

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