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

Side by Side Diff: Source/devtools/front_end/inspectorStyle.css

Issue 448743002: DevTools: Linkify console stacks with blackboxing consideration. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 6 years, 4 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
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 873 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 } /* media */ 884 } /* media */
885 885
886 .console-message > .outline-disclosure li.parent::before { 886 .console-message > .outline-disclosure li.parent::before {
887 top: 0; 887 top: 0;
888 } 888 }
889 889
890 .console-message .outline-disclosure .stacktrace-entry:hover { 890 .console-message .outline-disclosure .stacktrace-entry:hover {
891 background-color: rgba(0, 0, 0, 0.05); 891 background-color: rgba(0, 0, 0, 0.05);
892 } 892 }
893 893
894 .stacktrace-entry .webkit-html-blackbox-link {
895 opacity: 0.6;
896 }
897
894 .bubble-repeat-count { 898 .bubble-repeat-count {
895 display: inline-block; 899 display: inline-block;
896 height: 14px; 900 height: 14px;
897 background-color: rgb(128, 151, 189); 901 background-color: rgb(128, 151, 189);
898 vertical-align: middle; 902 vertical-align: middle;
899 white-space: nowrap; 903 white-space: nowrap;
900 padding: 1px 4px; 904 padding: 1px 4px;
901 text-align: left; 905 text-align: left;
902 font-size: 11px; 906 font-size: 11px;
903 line-height: normal; 907 line-height: normal;
(...skipping 1861 matching lines...) Expand 10 before | Expand all | Expand 10 after
2765 border-color: hsla(0, 0%, 0%, 0.3); 2769 border-color: hsla(0, 0%, 0%, 0.3);
2766 box-shadow: 0 1px 0 hsla(0, 0%, 0%, 0.12), inset 0 1px 2px hsla(0, 100%, 100 %, 0.95); 2770 box-shadow: 0 1px 0 hsla(0, 0%, 0%, 0.12), inset 0 1px 2px hsla(0, 100%, 100 %, 0.95);
2767 color: hsl(0, 0%, 0%); 2771 color: hsl(0, 0%, 0%);
2768 } 2772 }
2769 2773
2770 .text-button:not(:disabled):active { 2774 .text-button:not(:disabled):active {
2771 background-image: linear-gradient(hsl(0, 0%, 91%), hsl(0, 0%, 91%) 38%, hsl( 0, 0%, 84%)); 2775 background-image: linear-gradient(hsl(0, 0%, 91%), hsl(0, 0%, 91%) 38%, hsl( 0, 0%, 84%));
2772 box-shadow: none; 2776 box-shadow: none;
2773 text-shadow: none; 2777 text-shadow: none;
2774 } 2778 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698