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

Side by Side Diff: chrome/browser/resources/tracing/tracing_controller.css

Issue 10543144: Remove old tracing code now that it has moved to third_party. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 .tracing-overlay {
6 -webkit-box-align: center;
7 -webkit-box-orient: vertical;
8 -webkit-box-pack: center;
9 display: -webkit-box;
10 height: 80px;
11 text-align: center;
12 width: 200px;
13 }
14
15 .tracing-start-button {
16 -webkit-margin-start: 5px;
17 background: rgb(255, 0, 0);
18 background-clip: border-box;
19 border: 1px solid black;
20 border-bottom: 0;
21 border-top-left-radius: 8px;
22 border-top-right-radius: 8px;
23 display: inline-block;
24 margin-top: 4px;
25 padding: 5px 10px 3px 10px;
26 position: fixed;
27 right: 3px;
28 text-align: center;
29 text-decoration: none;
30 top: -1px;
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698