Sha256: b175074f1fca7a222681ad59cd86fdf953a62a6c24046a90ce0d5f0c0e6c1e87

Contents?: true

Size: 472 Bytes

Versions: 3

Compression:

Stored size: 472 Bytes

Contents

// Override this file in your Thcore based application to add specific styles
.alert {
    position: absolute;
    bottom: 1em !important;
    top: auto !important;
    right: 2.5em !important;
    width: auto !important;
    z-index: 9999 !important;
    border-radius: 2em !important;
    animation: hideMe 5s 1;
    animation-fill-mode: forwards;
    animation-delay: 2s;
}

@keyframes hideMe {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
thecore_ui_rails_admin-3.0.4 app/assets/stylesheets/rails_admin/custom/thecore/theming.scss
thecore_ui_rails_admin-3.0.3 app/assets/stylesheets/rails_admin/custom/thecore/theming.scss
thecore_ui_rails_admin-3.0.0 app/assets/stylesheets/rails_admin/custom/thecore/theming.scss