static cssTemplate()

in resources/perf.webkit.org/public/v3/pages/analysis-task-page.js [428:502]


    static cssTemplate()
    {
        return `
            :host {
                display: flex !important;
                font-size: 0.9rem;
            }

            #test-group-list {
                flex: none;
                margin: 0;
                padding: 0.2rem 0;
                list-style: none;
                border-right: solid 1px #ccc;
                white-space: nowrap;
                min-width: 8rem;
            }

            li {
                display: block;
                font-size: 0.9rem;
            }

            li > a {
                display: block;
                color: inherit;
                text-decoration: none;
                margin: 0;
                padding: 0.2rem;
            }

            li.test-group-list-show-all {
                font-size: 0.8rem;
                margin-top: 0.5rem;
                padding-right: 1rem;
                text-align: center;
                color: #999;
            }

            li.test-group-list-show-all:not(.selected) a:hover {
                background: inherit;
            }

            li.selected > a {
                background: rgba(204, 153, 51, 0.1);
            }

            li.hidden {
                color: #999;
            }

            li:not(.selected) > a:hover {
                background: #eee;
            }

            div.summary {
                padding-left: 1rem;
            }

            #test-group-details {
                display: table-cell;
                margin-bottom: 1rem;
                padding: 0 0.5rem;
                margin: 0;
            }

            #retry-form, #bisect-form {
                display: block;
                margin: 0.5rem;
            }

            #hide-button {
                margin: 0.5rem;
            }`;
    }