| Index: Source/devtools/front_end/timeline/timelinePanel.css
|
| diff --git a/Source/devtools/front_end/timeline/timelinePanel.css b/Source/devtools/front_end/timeline/timelinePanel.css
|
| index af08db600d24e496cb6fcfd494d5889e087245ae..3761f107bdf5a340efa3f4175f9baef3b69d25fa 100644
|
| --- a/Source/devtools/front_end/timeline/timelinePanel.css
|
| +++ b/Source/devtools/front_end/timeline/timelinePanel.css
|
| @@ -1065,3 +1065,66 @@
|
| background-color: rgba(255,255,255,0.25);
|
| border-bottom-color: transparent;
|
| }
|
| +
|
| +.timeline-status-dialog {
|
| + display: flex;
|
| + flex-direction: column;
|
| + padding: 16px;
|
| + font-size: 14px;
|
| +}
|
| +
|
| +.timeline-status-dialog div,button {
|
| + margin: 5px;
|
| +}
|
| +
|
| +.timeline-status-dialog .title {
|
| + align-self: center;
|
| + font-size: 20px;
|
| + margin-bottom: 12px;
|
| +}
|
| +
|
| +.timeline-status-dialog ::before {
|
| + display: inline-block;
|
| + width: 90px;
|
| + text-align: right;
|
| + color: #aaa;
|
| + margin-right: 10px;
|
| +}
|
| +
|
| +.timeline-status-dialog .status::before {
|
| + content: "Status";
|
| +}
|
| +
|
| +.timeline-status-dialog .time::before {
|
| + content: "Time";
|
| +}
|
| +
|
| +.timeline-status-dialog .buffer-usage::before {
|
| + content: "Buffer Usage";
|
| +}
|
| +
|
| +.timeline-status-dialog .buffer-usage .indicator-container {
|
| + display: inline-block;
|
| + width: 200px;
|
| + height: 12px;
|
| + background-color: #f4f4f4;
|
| + display: inline-block;
|
| + margin: 0;
|
| + vertical-align: middle;
|
| +}
|
| +
|
| +.timeline-status-dialog .buffer-usage .indicator {
|
| + background-color: rgb(112, 166, 255);
|
| + height: 100%;
|
| + width: 0;
|
| + margin: 0;
|
| +}
|
| +
|
| +.timeline-status-dialog .stop-button {
|
| + text-align: center;
|
| + margin-top: 16px;
|
| +}
|
| +
|
| +.timeline-status-dialog button:disabled {
|
| + opacity: 0.5;
|
| +}
|
|
|