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

Unified Diff: dart/site/try/index.html

Issue 197923002: Mock up code completion. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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: dart/site/try/index.html
diff --git a/dart/site/try/index.html b/dart/site/try/index.html
index 708a1c4d49c22aa94a68b2d89e6d7ee90af21835..d613145876775b64025a7f3fe7fe4f2eb7a9eb87 100644
--- a/dart/site/try/index.html
+++ b/dart/site/try/index.html
@@ -39,6 +39,26 @@ a:hover.diagnostic span {
font-weight: bolder;
opacity: 0.0;
}
+
+.dart-code-completion-holder {
+ position: relative;
+}
+
+.dart-code-completion-holder *.dart-code-completion {
+ display: none;
+ position: absolute;
+ left: 0px;
+ right: 0px;
+ min-width: 400px;
+ background: white;
+ foreground: black;
+ border: 1px solid black;
+ z-index: 10;
+}
+
+.dart-code-completion-holder.active *.dart-code-completion {
+ display: block;
+}
</style>
<meta itemprop="name" content="Try Dart!">

Powered by Google App Engine
This is Rietveld 408576698