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

Unified Diff: runtime/observatory/lib/src/elements/css/shared.css

Issue 2194383002: Converted Observatory code-ref function-ref element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed CSS problem Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/lib/src/elements/css/shared.css
diff --git a/runtime/observatory/lib/src/elements/css/shared.css b/runtime/observatory/lib/src/elements/css/shared.css
index 45c28ffe5b14b16a595cc6410201d02f5ffe0fcc..1519a1bb6a01df0d62598686551043b7973e2827 100644
--- a/runtime/observatory/lib/src/elements/css/shared.css
+++ b/runtime/observatory/lib/src/elements/css/shared.css
@@ -364,6 +364,42 @@ input.textbox {
-webkit-animation: shake 0.5s;
}
+/* code-ref */
+/* TODO(cbernaschina) fix code-ref-wrapped to code-ref when wrapper
+removed */
+
+code-ref-wrapped > a[href]:hover {
+ text-decoration: underline;
+}
+code-ref-wrapped > a[href] {
+ color: #0489c3;
+ text-decoration: none;
+}
+
+/* function-ref */
+/* TODO(cbernaschina) fix function-ref-wrapped to function-ref when wrapper
+removed */
+
+function-ref-wrapped > a[href]:hover {
+ text-decoration: underline;
+}
+function-ref-wrapped > a[href] {
+ color: #0489c3;
+ text-decoration: none;
+}
+
+/* isolate-ref */
+/* TODO(cbernaschina) fix isolate-ref-ref-wrapped to isolate-ref when wrapper
+removed */
+
+isolate-ref-wrapped > a[href]:hover {
+ text-decoration: underline;
+}
+isolate-ref-wrapped > a[href] {
+ color: #0489c3;
+ text-decoration: none;
+}
+
/* nav-notify */
/* TODO(cbernaschina) fix nav-notify-ref-wrapped to nav-notify-ref when wrapper
removed */
@@ -460,6 +496,34 @@ nav-refresh-wrapped > li {
margin: 0;
}
+/* script-ref */
+/* TODO(cbernaschina) fix script-ref-wrapped to script-ref when wrapper
+removed */
+
+script-ref-wrapped > a[href]:hover {
+ text-decoration: underline;
+}
+
+script-ref-wrapped > a[href] {
+ color: #0489c3;
+ text-decoration: none;
+}
+
+/* source-link */
+/* TODO(cbernaschina) fix source-link-wrapped to source-link when wrapper
+removed */
+
+source-link-wrapped > a[href]:hover {
+ text-decoration: underline;
+}
+
+source-link-wrapped > a[href] {
+ color: #0489c3;
+ text-decoration: none;
+}
+
+
+
/* view-footer */
view-footer {
« no previous file with comments | « runtime/observatory/lib/src/elements/cpu_profile.html ('k') | runtime/observatory/lib/src/elements/debugger.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698