perspective 2.0.0

A data visualization and analytics component, especially well-suited for large and/or streaming datasets.
/******************************************************************************
 *
 * Copyright (c) 2017, the Perspective Authors.
 *
 * This file is part of the Perspective library, distributed under the terms of
 * the Apache License 2.0.  The full license can be found in the LICENSE file.
 *
 */

:host {
    // Wrapper prevents the width of the selector options from increasing the width of
    // the container it is embedded in.
    .aggregate-selector-wrapper {
        height: 19px;
        display: flex;
        padding-left: 23px;
        width: 85px;
        min-width: 85px;
        max-width: 85px;
        flex: 0 0 85px;

        label {
            font-size: 10px;
            white-space: nowrap;
            height: 21px;
            display: flex;
            align-items: center;
            margin-right: 3px;
        }

        .aggregate-selector {
            font-size: 10px;
            border-bottom-width: 0px;
            margin-top: 0px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding-right: 12px;
            border: 1px solid transparent;

            &:hover {
                border: 1px solid var(--icon--color);
                border-radius: 2px;
                transition: none;
            }
        }

        .dropdown-width-container:after {
            content: none !important;
        }
    }
}