.page-type-split {
    overflow-y: hidden;
    .navigator-body {
        background-color: var(--ds-surface, white);
        border-bottom: 0;
    }
    .navigator-group {
        background-color: var(--ds-surface, #fff);
        padding-right: 0;
        padding-bottom: 0;
    }
    .navigator-sidebar {
        padding-bottom: 0;
        .favourite-filters,
        .filter-info {
            margin-bottom: -10px;
            max-height: none;
            min-height: 0;
        }
    }
    #footer {
        display: none;
    }

    /**
     * Override styles for fullscreen layout
     */
    .navigator-group > .results-panel {
        padding: 0;
    }
}

.split-view {
    .list-results-panel {
        /* JRADEV-20949 Force box-sizing to be context-box, overriding AUI's border-box. This is because
        Safari doesn't respect border-box for display: table-cell, causing inconsistent behaviour with Sidebar.js */
        box-sizing: content-box;
        width: 320px;
        + .detail-panel {
            padding-left: 0;
        }
        .count-pagination {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            margin-top: 0;
            background-color: var(--ds-surface, #f4f5f7); /* jira previous fallback value: @aui-color-N20 */
            padding: 10px 0;

            .refresh-container {
                padding-left: 10px;
            }

            /* Making the pagination controls more compact to fit in split view */
            .pagination {
                padding: 0 10px 0 0;
                vertical-align: middle;
            }
            .icon-previous {
                width: 13px;
                margin-left: 0;
            }
            .icon-next {
                width: 6px;
            }

            .aui-icon-small::before {
                color: var(--ds-icon-subtle, #42526e); /* jira previous fallback value: @aui-color-N500 */
            }
        }
    }

    #stalker,
    .issue-header {
        background-color: var(--ds-surface, #fff);
        padding: 0;
        &.detached {
            box-shadow: var(--ds-shadow-overflow, 10px -4px 10px 0 rgba(0, 0, 0, 0.5));
        }
    }
    .ops.page-navigation * {
        float: right;
    }

    #stalker {
        .issue-header-content {
            > .command-bar {
                border-top: none;
            }
            > .aui-page-header .aui-page-header-actions {
                width: auto;
            }
        }
    }
}

.list-panel {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 10px 0 0;
}

.issue-list {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    > li {
        border-bottom: 1px solid;
        cursor: pointer;
        padding: 5px 0 5px 5px;
        position: relative;
        .date-info time {
            margin-left: 4px;
        }
        img {
            vertical-align: text-bottom;
        }
        .splitview-issue-link {
            outline: none;

            .issue-link-summary {
                display: block;
                margin-top: 3px;
                color: var(--ds-text-accent-gray, #172b4d); /* jira previous fallback value: @aui-color-N800 */
            }

            > div {
                display: flex;

                > div.issue-content-container {
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    margin-left: 10px;
                }
            }
        }
    }
}

.issue-render-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30vh;
}
