Sha256: 945080a176302ff8bdbf1145bdde5c1405f9256c2c0a9536a08659b9c0b37c99

Contents?: true

Size: 1.13 KB

Versions: 4

Compression:

Stored size: 1.13 KB

Contents

@import 'thecore_ui_commons/variables';

// Spinner

.loader {
    width: 40px;
    height: 40px;

    position: relative;
    margin: 0 auto;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

// End Spinner

div.row.tcp-debug {
    margin-bottom: 1em;
}

.tcp-debug-response {
    width: 100%;
    margin-left: 0.1em;
    height: 4em;
}

#response {
    border-radius: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
thecore_tcp_debug-3.0.4 app/assets/stylesheets/rails_admin/custom/thecore/tcp_debug.scss
thecore_tcp_debug-3.0.3 app/assets/stylesheets/rails_admin/custom/thecore/tcp_debug.scss
thecore_tcp_debug-3.0.2 app/assets/stylesheets/rails_admin/custom/thecore/tcp_debug.scss
thecore_tcp_debug-3.0.1 app/assets/stylesheets/rails_admin/custom/thecore/tcp_debug.scss