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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/elements/elementsPanel.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 (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 .styles-section-subtitle { 219 .styles-section-subtitle {
220 color: rgb(85, 85, 85); 220 color: rgb(85, 85, 85);
221 float: right; 221 float: right;
222 margin-left: 5px; 222 margin-left: 5px;
223 max-width: 100%; 223 max-width: 100%;
224 text-overflow: ellipsis; 224 text-overflow: ellipsis;
225 overflow: hidden; 225 overflow: hidden;
226 white-space: nowrap; 226 white-space: nowrap;
227 } 227 }
228 228
229 .styles-section .styles-section-subtitle a { 229 .styles-section .styles-section-subtitle .devtools-link {
230 color: inherit; 230 color: inherit;
231 } 231 }
232 232
233 .styles-section .selector { 233 .styles-section .selector {
234 color: #888; 234 color: #888;
235 } 235 }
236 236
237 .styles-section .simple-selector.selector-matches, .styles-section.keyframe-key { 237 .styles-section .simple-selector.selector-matches, .styles-section.keyframe-key {
238 color: #222; 238 color: #222;
239 } 239 }
240 240
241 .styles-section .webkit-html-resource-link { 241 .styles-section .devtools-link {
242 user-select: none; 242 user-select: none;
243 } 243 }
244 244
245 .styles-section .style-properties { 245 .styles-section .style-properties {
246 margin: 0; 246 margin: 0;
247 padding: 2px 4px 0 0; 247 padding: 2px 4px 0 0;
248 list-style: none; 248 list-style: none;
249 clear: both; 249 clear: both;
250 display: flex; 250 display: flex;
251 } 251 }
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 position: absolute; 529 position: absolute;
530 right: 0; 530 right: 0;
531 bottom: 0; 531 bottom: 0;
532 visibility: hidden; 532 visibility: hidden;
533 background-color: rgba(255, 255, 255, 0.9); 533 background-color: rgba(255, 255, 255, 0.9);
534 } 534 }
535 535
536 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl y):hover .sidebar-pane-section-toolbar { 536 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl y):hover .sidebar-pane-section-toolbar {
537 visibility: visible; 537 visibility: visible;
538 } 538 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698