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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/console/consoleView.css

Issue 2527763003: [DevTools] Turn links into spans to prevent default behavior. (Closed)
Patch Set: 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 342
343 .console-user-command::before { 343 .console-user-command::before {
344 background-position: 0 -20px; 344 background-position: 0 -20px;
345 } 345 }
346 346
347 #console-messages .link { 347 #console-messages .link {
348 text-decoration: underline; 348 text-decoration: underline;
349 } 349 }
350 350
351 #console-messages .link, 351 #console-messages .link,
352 #console-messages a { 352 #console-messages .devtools-link {
353 color: rgb(33%, 33%, 33%); 353 color: rgb(33%, 33%, 33%);
354 cursor: pointer; 354 cursor: pointer;
355 word-break: break-all; 355 word-break: break-all;
356 } 356 }
357 357
358 #console-messages .link:hover, 358 #console-messages .link:hover,
359 #console-messages a:hover { 359 #console-messages a:hover {
lushnikov 2016/11/24 00:14:39 don't we need to change this as well?
dgozman 2016/11/24 00:58:29 We do.
360 color: rgb(15%, 15%, 15%); 360 color: rgb(15%, 15%, 15%);
361 } 361 }
362 362
363 .console-group-messages .section { 363 .console-group-messages .section {
364 margin: 0 0 0 12px !important; 364 margin: 0 0 0 12px !important;
365 } 365 }
366 366
367 .console-group-messages .section > .header { 367 .console-group-messages .section > .header {
368 padding: 0 8px 0 0; 368 padding: 0 8px 0 0;
369 background-image: none; 369 background-image: none;
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 481
482 @media (-webkit-min-device-pixel-ratio: 1.1) { 482 @media (-webkit-min-device-pixel-ratio: 1.1) {
483 .console-message-stack-trace-toggle .console-message-text::before { 483 .console-message-stack-trace-toggle .console-message-text::before {
484 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); 484 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
485 } 485 }
486 } /* media */ 486 } /* media */
487 487
488 .console-message-stack-trace-toggle.expanded .console-message-text::before { 488 .console-message-stack-trace-toggle.expanded .console-message-text::before {
489 -webkit-mask-position: -20px -96px; 489 -webkit-mask-position: -20px -96px;
490 } 490 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698