/* This LESS file has colour rules pulled out for compilation performance.
It allows the other files to be precompiled, since they have no dependencies.
Is it worth fragmenting the stylesheets you ask? Yes -- it reduces compilation time
from ~130ms to ~30ms (i.e. ~75% improvement).
Ideally we'd just avoid using colour variables in this plugin. */

/* -- issuenav.less */
.navigator-search {
    border-bottom-color: var(--ds-border, #ebecf0); /* jira previous fallback value: @aui-color-N30 */
}

.saved-search-selector {
    border-bottom-color: var(--ds-surface-hovered, var(--jira-color-highlight-secondary, #ebecf0));
}

/* -- splitview.less */
.split-view .list-results-panel {
    border-right-color: var(--ds-border, var(--jira-color-highlight-secondary, #ebecf0));
    .count-pagination {
        border-top-color: var(--ds-border, var(--jira-color-highlight-secondary, #ebecf0));
    }
}

.issue-list {
    > li {
        border-bottom-color: var(--ds-border, #dfe1e5); /* jira previous fallback value: @aui-color-N40 */
        &.focused {
            background-color: var(--ds-background-accent-blue-subtlest, var(--jira-color-selection-background, #deebff));
        }
        &:hover {
            background-color: var(--ds-surface-hovered, rgba(9, 30, 66, 0.08)); /* jira previous fallback value: @aui-color-N30A */
        }
        .date-info {
            color: var(--ds-text-subtle, var(--jira-color-subtle-text, #5e6c84));
        }
    }
}
