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

Side by Side Diff: tracing/tracing/ui/base/list_view.css

Issue 3017523002: Fix uses of /deep/ in trace viewer. (Closed)
Patch Set: fix tests Created 3 years, 2 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
6 * /deep/ .x-list-view {
7 -webkit-user-select: none;
8 display: block;
9 }
10 * /deep/ .x-list-view:focus {
11 outline: none;
12 }
13
14 * /deep/ .x-list-view * {
15 -webkit-user-select: none;
16 }
17
18 * /deep/ .x-list-view > .list-item {
19 padding: 2px 4px 2px 4px;
20 }
21
22 * /deep/ .x-list-view:focus > .list-item[selected] {
23 background-color: rgb(171, 217, 202);
24 outline: 1px dotted rgba(0,0,0,0.1);
25 outline-offset: 0;
26 }
27
28 * /deep/ .x-list-view > .list-item[selected] {
29 background-color: rgb(103, 199, 165);
30 }
OLDNEW
« no previous file with comments | « tracing/tracing/ui/base/list_and_associated_view_test.html ('k') | tracing/tracing/ui/base/list_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698