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

Side by Side Diff: runtime/observatory/lib/src/elements/script_inset.html

Issue 1289913002: Make declaration annotations direct links; update annotations after the library's declarations are … (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="observatory_element.html"> 2 <link rel="import" href="observatory_element.html">
3 3
4 <polymer-element name="script-inset" extends="observatory-element"> 4 <polymer-element name="script-inset" extends="observatory-element">
5 <template> 5 <template>
6 <style> 6 <style>
7 a {
8 color: #0489c3;
Cutch 2015/08/12 19:25:48 Should these be moved to shared.css?
rmacnak 2015/08/12 19:33:26 They are in shared.css, but if I include shared.cs
9 text-decoration: none;
10 }
11 a:hover {
12 text-decoration: underline;
13 }
7 .sourceInset { 14 .sourceInset {
8 } 15 }
9 .sourceTable { 16 .sourceTable {
10 display: table; 17 display: table;
11 background-color: #f5f5f5; 18 background-color: #f5f5f5;
12 border: 1px solid #ccc; 19 border: 1px solid #ccc;
13 padding: 10px; 20 padding: 10px;
14 width: 100%; 21 width: 100%;
15 box-sizing: border-box; 22 box-sizing: border-box;
16 } 23 }
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 height="{{ height }}" 96 height="{{ height }}"
90 currentPos="{{ currentPos }}" 97 currentPos="{{ currentPos }}"
91 inDebuggerContext="{{ inDebuggerContext }}" 98 inDebuggerContext="{{ inDebuggerContext }}"
92 variables="{{ variables }}"> 99 variables="{{ variables }}">
93 </script-inset> 100 </script-inset>
94 </template> 101 </template>
95 </template> 102 </template>
96 </polymer-element> 103 </polymer-element>
97 104
98 <script type="application/dart" src="script_inset.dart"></script> 105 <script type="application/dart" src="script_inset.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698