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

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

Issue 9958101: [WebUI] Fix rest of CSS style nits in misc. dirs so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: estade review Created 8 years, 8 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 * Use of this source code is governed by a BSD-style license that can be
3 Use of this source code is governed by a BSD-style license that can be 3 * found in the LICENSE file. */
4 found in the LICENSE file. 4
5 */
6 .overlay-root { 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);
7 display: -webkit-box; 11 display: -webkit-box;
12 height: 100%;
13 left: 0;
8 position: fixed; 14 position: fixed;
15 top: 0;
9 width: 100%; 16 width: 100%;
10 height: 100%;
11 top: 0;
12 left: 0;
13 background: rgba(0, 0, 0, 0.8);
14 -webkit-user-select: none;
15 -webkit-box-orient: horizontal;
16 -webkit-box-align: stretch;
17 -webkit-box-pack: center;
18 z-index: 1000; 17 z-index: 1000;
19 } 18 }
20 19
21 .overlay-root:not([visible]), 20 .overlay-root:not([visible]),
22 .overlay:not([visible]) 21 .overlay:not([visible]) {
23 {
24 display: none; 22 display: none;
25 } 23 }
26 24
27 .overlay-root > .content-host { 25 .overlay-root > .content-host {
26 -webkit-box-align: stretch;
27 -webkit-box-orient: vertical;
28 -webkit-box-pack: center;
28 -webkit-user-select: auto; 29 -webkit-user-select: auto;
29 display: -webkit-box; 30 display: -webkit-box;
30 -webkit-box-orient: vertical;
31 -webkit-box-align: stretch;
32 -webkit-box-pack: center;
33 } 31 }
34 32
35 .overlay-root > .content-host > * { 33 .overlay-root > .content-host > * {
36 background: rgb(255, 255, 255); 34 background: rgb(255, 255, 255);
37 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698