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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/uiList.css

Issue 2527763003: [DevTools] Turn links into spans to prevent default behavior. (Closed)
Patch Set: fixed comments Created 4 years 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
1 /* 1 /*
2 * Copyright 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 The Chromium Authors. All rights reserved.
3 * 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
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .list-item { 7 .list-item {
8 padding: 3px 8px 3px 20px; 8 padding: 3px 8px 3px 20px;
9 position: relative; 9 position: relative;
10 min-height: 18px; 10 min-height: 18px;
(...skipping 20 matching lines...) Expand all
31 overflow: hidden; 31 overflow: hidden;
32 white-space: nowrap; 32 white-space: nowrap;
33 } 33 }
34 34
35 .list-item > .subtitle { 35 .list-item > .subtitle {
36 color: #888; 36 color: #888;
37 margin-left: auto; 37 margin-left: auto;
38 padding: 0 10px 0 10px; 38 padding: 0 10px 0 10px;
39 } 39 }
40 40
41 .list-item > .subtitle a { 41 .list-item > .subtitle .devtools-link {
42 color: inherit; 42 color: inherit;
43 } 43 }
44 44
45 .list-item.label::before { 45 .list-item.label::before {
46 content: " "; 46 content: " ";
47 width: 100%; 47 width: 100%;
48 border-top: 1px solid #d8d8d8; 48 border-top: 1px solid #d8d8d8;
49 margin-top: 8px; 49 margin-top: 8px;
50 position: absolute; 50 position: absolute;
51 z-index: -1; 51 z-index: -1;
(...skipping 27 matching lines...) Expand all
79 .list-item .action-link { 79 .list-item .action-link {
80 color: rgb(48, 57, 66); 80 color: rgb(48, 57, 66);
81 text-decoration: underline; 81 text-decoration: underline;
82 cursor: pointer; 82 cursor: pointer;
83 } 83 }
84 84
85 .list-item:hover .action-link { 85 .list-item:hover .action-link {
86 color: rgb(17, 85, 204); 86 color: rgb(17, 85, 204);
87 } 87 }
88 88
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698