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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlight.css

Issue 1952933002: DevTools: extract the report view to reuse in app manifest and service worker pane. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tests fixed Created 4 years, 7 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 98
99 .webkit-html-attribute-value { 99 .webkit-html-attribute-value {
100 /* Keep this in sync with view-source.css (.webkit-html-attribute-value) */ 100 /* Keep this in sync with view-source.css (.webkit-html-attribute-value) */
101 color: rgb(26, 26, 166); 101 color: rgb(26, 26, 166);
102 unicode-bidi: -webkit-isolate; 102 unicode-bidi: -webkit-isolate;
103 } 103 }
104 104
105 .webkit-html-external-link, 105 .webkit-html-external-link,
106 .webkit-html-resource-link { 106 .webkit-html-resource-link {
107 /* Keep this in sync with view-source.css (.webkit-html-external-link, .webk it-html-resource-link) */ 107 /* Keep this in sync with view-source.css (.webkit-html-external-link, .webk it-html-resource-link) */
108 color: #00e; 108 color: rgb(17, 85, 204);
109 } 109 }
110 110
111 .-theme-with-dark-background .webkit-html-external-link, 111 .-theme-with-dark-background .webkit-html-external-link,
112 .-theme-with-dark-background .webkit-html-resource-link, 112 .-theme-with-dark-background .webkit-html-resource-link,
113 :host-context(.-theme-with-dark-background) .webkit-html-external-link, 113 :host-context(.-theme-with-dark-background) .webkit-html-external-link,
114 :host-context(.-theme-with-dark-background) .webkit-html-resource-link { 114 :host-context(.-theme-with-dark-background) .webkit-html-resource-link {
115 color: hsl(0, 0%, 67%); 115 color: hsl(0, 0%, 67%);
116 } 116 }
117 117
118 .webkit-html-resource-link { 118 .webkit-html-resource-link {
(...skipping 10 matching lines...) Expand all
129 .webkit-html-external-link:hover { 129 .webkit-html-external-link:hover {
130 /* Keep this in sync with view-source.css (.webkit-html-external-link:hover) */ 130 /* Keep this in sync with view-source.css (.webkit-html-external-link:hover) */
131 text-decoration: underline; 131 text-decoration: underline;
132 } 132 }
133 133
134 .webkit-html-end-of-file { 134 .webkit-html-end-of-file {
135 /* Keep this in sync with view-source.css (.webkit-html-end-of-file) */ 135 /* Keep this in sync with view-source.css (.webkit-html-end-of-file) */
136 color: rgb(255, 0, 0); 136 color: rgb(255, 0, 0);
137 font-weight: bold; 137 font-weight: bold;
138 } 138 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698