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

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

Issue 1321683003: DevTools: Introduce timeline recording info dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: addressing comments 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
« no previous file with comments | « Source/devtools/front_end/timeline/module.json ('k') | Source/devtools/front_end/ui/Dialog.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/timeline/timelineStatusDialog.css
diff --git a/Source/devtools/front_end/timeline/timelineStatusDialog.css b/Source/devtools/front_end/timeline/timelineStatusDialog.css
new file mode 100644
index 0000000000000000000000000000000000000000..ec8ad049ff716fc48f12f9c95eebccba734b0dc8
--- /dev/null
+++ b/Source/devtools/front_end/timeline/timelineStatusDialog.css
@@ -0,0 +1,69 @@
+/*
+ * Copyright (c) 2015 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+.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;
+}
+
« no previous file with comments | « Source/devtools/front_end/timeline/module.json ('k') | Source/devtools/front_end/ui/Dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698