Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4337)

Unified Diff: Source/devtools/front_end/timeline/timelinePanel.css

Issue 1321683003: DevTools: Introduce timeline recording info dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 1/10sec -> sec Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
+}

Powered by Google App Engine
This is Rietveld 408576698