perspective-viewer 5.4.0

A data visualization and analytics component, especially well-suited for large and/or streaming datasets.
Documentation
/* ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃ ██████ ██████ ██████       █      █      █      █      █ █▄  ▀███ █       ┃
 * ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█  ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄  ▀█ █ ▀▀▀▀▀ ┃
 * ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄   █ ▄▄▄▄▄ ┃
 * ┃ █      ██████ █  ▀█▄       █ ██████      █      ███▌▐███ ███████▄ █       ┃
 * ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
 * ┃ Copyright (c) 2017, the Perspective Authors.                              ┃
 * ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
 * ┃ This file is part of the Perspective library, distributed under the terms ┃
 * ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
 */

.dropdown-group-label {
    font-size: 0.75em;
    color: var(--psp-inactive--color);
    &:not(:first-of-type) {
        margin-top: 16px;
    }
}

.dropdown-group-label[data-label="new-from-table"]::before {
    content: var(--psp-label--new-from-table--content, var(--psp-missing));
}

.dropdown-group-label[data-label="new-from-panel"]::before {
    content: var(--psp-label--new-from-panel--content, var(--psp-missing));
}

.dropdown-group-sublabel {
    font-size: 0.75em;
    text-transform: uppercase;
    color: var(--psp-inactive--color);
    margin-top: 6px;
}

.dropdown-group-container {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.dropdown-group-label,
.dropdown-group-sublabel,
.dropdown-group-container > span,
.no-results {
    display: inline-flex;
    align-items: center;
    margin: 0 -8px;
    padding: 0 8px;
}

.dropdown-menu-item {
    cursor: pointer;
    min-height: 22px;
    &:hover {
        background-color: var(--psp--color);
        color: var(--psp--background-color);
    }
}

.no-results {
    font-style: italic;
    padding: 6px 24px;
    color: #ccc;
}