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

Unified Diff: runtime/observatory/lib/src/elements/nav_bar.html

Issue 2160123002: Converted Observatory nav-menu-item element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Converted from single to triple quotes 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/nav_bar.html
diff --git a/runtime/observatory/lib/src/elements/nav_bar.html b/runtime/observatory/lib/src/elements/nav_bar.html
index c97b1d146be6bf465f2c794d4299c9a33b86d7e8..0ff2693d00a3cea0c59c327d39731619d469aba3 100644
--- a/runtime/observatory/lib/src/elements/nav_bar.html
+++ b/runtime/observatory/lib/src/elements/nav_bar.html
@@ -93,50 +93,6 @@
</template>
</polymer-element>
-<polymer-element name="nav-menu-item" extends="observatory-element">
- <template>
- <style>
- li {
- float: none;
- border-top: 1px solid #677;
- border-bottom: 1px solid #556; position: relative;
- }
- li:hover {
- background: #455;
- }
- li ul {
- display: none;
- position: absolute;
- top:0;
- left: 100%;
- list-style: none;
- padding: 0;
- margin-left: 0;
- width: auto;
- z-index: 1000;
- font: 400 16px 'Montserrat', sans-serif;
- color: white;
- background: #567;
- }
- li ul:after {
- content: ""; clear: both; display: block;
- }
- li:hover > ul {
- display: block;
- }
- li a {
- display: block;
- padding: 12px 12px;
- color: white;
- text-decoration: none;
- }
- </style>
- <li><a on-click="{{ goto }}" _href="{{ gotoLink(link) }}">{{ anchor }}</a>
- <ul><content></content></ul>
- </li>
- </template>
-</polymer-element>
-
<polymer-element name="nav-refresh" extends="observatory-element">
<template>
<style>

Powered by Google App Engine
This is Rietveld 408576698