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

Side by Side Diff: chrome/browser/resources/tracing/overlay.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 .overlay-root {
6 -webkit-box-align: stretch;
7 -webkit-box-orient: horizontal;
8 -webkit-box-pack: center;
9 -webkit-user-select: none;
10 background: rgba(0, 0, 0, 0.8);
11 display: -webkit-box;
12 height: 100%;
13 left: 0;
14 position: fixed;
15 top: 0;
16 width: 100%;
17 z-index: 1000;
18 }
19
20 .overlay-root:not([visible]),
21 .overlay:not([visible]) {
22 display: none;
23 }
24
25 .overlay-root > .content-host {
26 -webkit-box-align: stretch;
27 -webkit-box-orient: vertical;
28 -webkit-box-pack: center;
29 -webkit-user-select: auto;
30 display: -webkit-box;
31 }
32
33 .overlay-root > .content-host > * {
34 background: rgb(255, 255, 255);
35 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/tracing/measuring_stick.js ('k') | chrome/browser/resources/tracing/overlay.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698