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

Unified Diff: chrome/browser/resources/gpu_internals/tracing_controller.css

Issue 6551019: Trace_event upgrades (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More gooder js thanks to arv. Created 9 years, 10 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: chrome/browser/resources/gpu_internals/tracing_controller.css
diff --git a/chrome/browser/resources/gpu_internals/tracing_controller.css b/chrome/browser/resources/gpu_internals/tracing_controller.css
new file mode 100644
index 0000000000000000000000000000000000000000..331fe85f9045b6c74d5c768da1ca655b37fe4acc
--- /dev/null
+++ b/chrome/browser/resources/gpu_internals/tracing_controller.css
@@ -0,0 +1,33 @@
+/*
+Copyright (c) 2011 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.
+*/
+.gpu-tracing-overlay {
+ text-align: center;
+ display: -webkit-box;
+ width: 200px;
+ height: 80px;
+ -webkit-box-orient: vertical;
+ -webkit-box-pack: center;
+ -webkit-box-align: center;
+}
+
+.gpu-tracing-start-button {
+ position: fixed;
+ right: 3px;
+ top: -1px;
+ -webkit-margin-start: 5px;
+ text-decoration: none;
+ text-align: center;
+ display: inline-block;
+ margin-top: 4px;
+ padding: 5px 10px 3px 10px;
+ border-top-right-radius: 8px;
+ border-top-left-radius: 8px;
+ background-clip: border-box;
+ background: rgb(255,0,0);
arv (Not doing code reviews) 2011/02/25 00:51:29 ws after comma
+ border-left: 1px solid black;
arv (Not doing code reviews) 2011/02/25 00:51:29 Sometimes it gets shorter to do: border: 1px soli
+ border-top: 1px solid black;
+ border-right: 1px solid black;
+}

Powered by Google App Engine
This is Rietveld 408576698