static cssTemplate()

in resources/perf.webkit.org/public/v3/components/commit-log-viewer.js [123:166]


    static cssTemplate()
    {
        return `
            .commits-viewer-container {
                width: 100%;
                height: calc(100% - 2px);
                overflow-y: scroll;
            }

            #commits-viewer-table {
                width: 100%;
                border-collapse: collapse;
                border-bottom: solid 1px #ccc;
            }

            caption {
                font-weight: inherit;
                font-size: 1rem;
                text-align: center;
                padding: 0.2rem;
            }

            .revision {
                white-space: nowrap;
                font-weight: normal;
                margin: 0;
                padding: 0;
            }

            td, th {
                word-break: break-word;
                border-top: solid 1px #ccc;
                padding: 0.2rem;
                margin: 0;
                font-size: 0.8rem;
                font-weight: normal;
            }

            #spinner-container {
                margin-top: 2rem;
                text-align: center;
            }
`;
    }