/*
 * Copyright (C) 2013-2015 Apple Inc. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 * THE POSSIBILITY OF SUCH DAMAGE.
 */

.toolbar .dashboard-container {
    position: relative;

    border-radius: 4px;
    margin: 4px;
    overflow: hidden;
}

body.web .toolbar .dashboard-container {
    width: 36vw;
    min-width: 350px;
}

body.javascript .toolbar .dashboard-container {
    width: 25vw;
    min-width: 175px;
}

.toolbar.collapsed .dashboard-container {
    min-width: 175px !important;
    width: 175px !important;
}

.toolbar.icon-and-label-vertical:matches(.small-size, .normal-size) .dashboard-container {
    margin-top: 6px;
}

/* Styles for the extra short style, one row with quite a small y-margin */

.toolbar.label-only .dashboard-container,
.toolbar.small-size:matches(.icon-only, .icon-and-label-vertical, .icon-and-label-horizontal) .dashboard-container {
    height: 22px;
}

/* Styles for the fairly short style, one row with quite a bit of y-margin */

.toolbar.normal-size:matches(.icon-only, .icon-and-label-vertical, .icon-and-label-horizontal) .dashboard-container {
    height: 30px;
}

/* Default styles for dashboards */

.toolbar .dashboard {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    padding: 0 10px 0 5px;

    animation-duration: 0.4s;
}

.toolbar .dashboard.visible {
    z-index: 1; /* Establish a stacking context. */
}

.toolbar .dashboard:not(.visible) {
    display: none !important;
}

.toolbar .dashboard.slide-out-up {
    animation-name: slide-top-edge;
    animation-direction: reverse;
}

.toolbar .dashboard.slide-out-down {
    animation-name: slide-bottom-edge;
}

.toolbar .dashboard.slide-in-up {
    animation-name: slide-bottom-edge;
    animation-direction: reverse;
}

.toolbar .dashboard.slide-in-down {
    animation-name: slide-top-edge;
}

@keyframes slide-top-edge {
    from {
        transform: translateY(-30px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slide-bottom-edge {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(30px);
    }
}

.dashboard-container .advance-arrow {
    position: absolute;
    right: 0;
    width: 19px;
    top: 0;
    bottom: 0;
    padding: 4px 0;
    opacity: 0.6;

    z-index: 2;
    background-repeat: no-repeat;
    background-size: 8px;
    background-image: url(../Images/UpDownArrows.svg);

    transition-property: opacity;
    transition-duration: 0.2s;
    background-clip: content-box;
}

.dashboard-container .advance-arrow:hover {
    opacity: 0.8;
}

.dashboard-container .advance-arrow:active {
    opacity: 1;
}

.dashboard-container .advance-arrow.inactive {
    opacity: 0;
    pointer-events: none;
}

.toolbar.label-only .dashboard-container .advance-arrow {
    width: 8px;
    height: 8px;
    margin: 2px 4px 2px 2px;
    background-size: 6px;
}

.dashboard-container .advance-arrow.advance-forward {
    top: 0;
    background-position: 50% 4px;
}

.dashboard-container .advance-arrow.advance-backward {
    bottom: 0;
    background-position: 50% -4px;
}
