/**
 * Command palette for Craft.
 *
 * @author    a&m impact
 * @copyright Copyright (c) 2017 a&m impact
 * @link      http://www.am-impact.nl
 */

.palette {
    background: #333f4d;
}

.palette__tabs {
    background: #333f4d;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


/**
 * Input
 */
.palette__search input[type=text] {
    background: #333f4d;
    border: 1px solid #fafafa;
    color: #fff;
}


/**
 * Loaders
 */
.palette__loader {
    border-top: 3px solid rgba(255,255,255, 0.2);
    border-right: 3px solid rgba(255,255,255, 0.2);
    border-bottom: 3px solid rgba(255,255,255, 0.2);
    border-left: 3px solid #FFFFFF;
}


/**
 * Commands
 */
.palette__commands li:hover {
    background: rgba(255, 255, 255, 0.05);
}

.palette__commands li.focus {
    background: rgba(255, 255, 255, 0.1);
}

.palette__command__name {
    color: #d7d9db;
}

.palette__commands li.focus .palette__command__name {
    color: #fff;
}

.palette__command__info {
    color: #b9bfc6;
}

.palette__command__shortcut {
    color: #d7d9db;
}

.palette__commands li.focus .palette__command__shortcut {
    color: #fff;
}

.palette__command__icon {
    color: #d7d9db;
}

.palette__commands li.focus .palette__command__icon {
    color: #fff;
}

.palette__command__icon svg path {
    fill: #d7d9db;
}

.palette__commands li.focus .palette__command__icon svg path {
    fill: #fff;
}
