Your IP : 216.73.216.220


Current Path : /var/www/surf/TYPO3/vendor/mask/mask/Build/Sources/scss/
Upload File :
Current File : /var/www/surf/TYPO3/vendor/mask/mask/Build/Sources/scss/_sidebar.scss

.mask-sidebar {
    margin-bottom: 20px;
    width: 350px;
    max-width: 100%;
    position: relative;
    z-index: 1;

    @media screen and (min-width: $bp-edit-flex) {
        margin-right: 10px;
        flex-shrink: 0;
    }

    @media screen and (min-width: $bp-laptop) {
        width: 300px;
    }

    @media screen and (min-width: $bp-desktop) {
        margin-bottom: 0;
        width: 350px;
    }

    &__background {
        background-color: $bg-light;
        border: 1px solid $border-color;
        position: sticky;
        top: 10px;

        @media screen and (min-width: $bp-laptop) {
            min-height: calc(100vh - 20px);
        }
    }

    &__inner {
        display: flex;
        flex-direction: column;
    }

    &__toolbar {
        padding: 10px 10px 0;
        margin-bottom: 10px;
    }

    &__content {
        padding: 10px;
        flex-grow: 1;
    }

    textarea {
        max-width: 100%;
    }

    &__toggle-wrap {
        display: flex;
        margin-bottom: 10px;
    }

    &__toggle {
        flex-grow: 1;
        padding: 7px;
        background-color: #ededed;
        text-align: center;
        cursor: pointer;
        width: 50%;
        position: relative;
        border: 1px solid $border-color;

        &:first-child {
            border-left: 0;
            border-right: 0;
        }

        &:last-child {
            border-right: 0;
        }

        &:hover {
            background-color: #e1e0e0;
        }

        &.active {
            background-color: $bg-light;
            border-bottom: 0;
        }

        &.has-error {
            &:before {
                @extend %error;
            }
        }
    }
}