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

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

Issue 2504763003: [DevTools] Make all links have underline decoration. (Closed)
Patch Set: Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlight.css
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlight.css b/third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlight.css
index 356acffffcb5091597cc52ecc3e1263640ae493a..eba87a31e0cac966da60a2f94f5088fb6ba43887 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlight.css
+++ b/third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlight.css
@@ -107,6 +107,9 @@
.webkit-html-resource-link {
/* Keep this in sync with view-source.css (.webkit-html-external-link, .webkit-html-resource-link) */
color: rgb(17, 85, 204);
+ /* Required for consistency with view-source.css, since anchors may not have href attributes */
+ text-decoration: underline;
+ cursor: pointer;
}
.-theme-with-dark-background .webkit-html-external-link,
@@ -116,22 +119,6 @@
color: hsl(0, 0%, 67%);
}
-.webkit-html-resource-link {
- /* Required for consistency with view-source.css, since anchors may not have href attributes */
- text-decoration: underline;
- cursor: pointer;
-}
-
-.webkit-html-external-link {
- /* Keep this in sync with view-source.css (.webkit-html-external-link) */
- text-decoration: none;
-}
-
-.webkit-html-external-link:hover {
- /* Keep this in sync with view-source.css (.webkit-html-external-link:hover) */
- text-decoration: underline;
-}
-
.webkit-html-end-of-file {
/* Keep this in sync with view-source.css (.webkit-html-end-of-file) */
color: rgb(255, 0, 0);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698