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

Side by Side Diff: tools/cc-frame-viewer/src/ui/list_view.css

Issue 15736032: Remove old cc-frame-viewer now that it is upstreamed into trace_viewer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
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 x-list-view {
5 display: block;
6 -webkit-user-select: none;
7 }
8 x-list-view:focus {
9 outline: none;
10 }
11
12 x-list-view * {
13 -webkit-user-select: none;
14 }
15
16 x-list-view > .list-item {
17 padding: 2px 4px 2px 4px;
18 }
19
20 x-list-view:focus > .list-item[selected] {
21 background-color: rgb(171, 217, 202);
22 outline-offset: 0;
23 outline: 1px dotted rgba(0,0,0,0.1);
24 }
25
26 x-list-view > .list-item[selected] {
27 background-color: rgb(103, 199, 165);
28 }
OLDNEW
« no previous file with comments | « tools/cc-frame-viewer/src/ui/list_and_associated_view_test.html ('k') | tools/cc-frame-viewer/src/ui/list_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698