| Index: chrome/browser/resources/tracing/overlay.css
|
| diff --git a/chrome/browser/resources/tracing/overlay.css b/chrome/browser/resources/tracing/overlay.css
|
| index 994b5277ac47e0633aba89d0bea84b151756d138..455047ea137a8a3e3a12e0500a566ac730ca2c9f 100644
|
| --- a/chrome/browser/resources/tracing/overlay.css
|
| +++ b/chrome/browser/resources/tracing/overlay.css
|
| @@ -1,35 +1,34 @@
|
| -/*
|
| -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.
|
| -*/
|
| +/* Copyright (c) 2012 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.
|
| + */
|
| +
|
| .overlay-root {
|
| + -webkit-box-align: stretch;
|
| + -webkit-box-orient: horizontal;
|
| + -webkit-box-pack: center;
|
| + -webkit-user-select: none;
|
| + background: rgba(0, 0, 0, 0.8);
|
| display: -webkit-box;
|
| - position: fixed;
|
| - width: 100%;
|
| height: 100%;
|
| - top: 0;
|
| left: 0;
|
| - background: rgba(0, 0, 0, 0.8);
|
| - -webkit-user-select: none;
|
| - -webkit-box-orient: horizontal;
|
| - -webkit-box-align: stretch;
|
| - -webkit-box-pack: center;
|
| + position: fixed;
|
| + top: 0;
|
| + width: 100%;
|
| z-index: 1000;
|
| }
|
|
|
| .overlay-root:not([visible]),
|
| -.overlay:not([visible])
|
| -{
|
| +.overlay:not([visible]) {
|
| display: none;
|
| }
|
|
|
| .overlay-root > .content-host {
|
| - -webkit-user-select: auto;
|
| - display: -webkit-box;
|
| - -webkit-box-orient: vertical;
|
| -webkit-box-align: stretch;
|
| + -webkit-box-orient: vertical;
|
| -webkit-box-pack: center;
|
| + -webkit-user-select: auto;
|
| + display: -webkit-box;
|
| }
|
|
|
| .overlay-root > .content-host > * {
|
|
|