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

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

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, 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="code_ref.html">
3 <link rel="import" href="function_ref.html">
4 2
5 <polymer-element name="logging-page"> 3 <polymer-element name="logging-page">
6 <template> 4 <template>
7 <link rel="stylesheet" href="css/shared.css"> 5 <link rel="stylesheet" href="css/shared.css">
8 <style> 6 <style>
9 .outlined { 7 .outlined {
10 -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); 8 -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
11 -moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); 9 -moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
12 box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); 10 box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
13 margin: 4px; 11 margin: 4px;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 <span>Show messages with severity <select id="severityLevelSelector" value ="{{ severityLevel }}"></select> and higher</span> 63 <span>Show messages with severity <select id="severityLevelSelector" value ="{{ severityLevel }}"></select> and higher</span>
66 <hr> 64 <hr>
67 <div class="flex-row fill"> 65 <div class="flex-row fill">
68 <div id="log" class="outlined"></div> 66 <div id="log" class="outlined"></div>
69 </div> 67 </div>
70 </div> 68 </div>
71 </template> 69 </template>
72 </polymer-element> 70 </polymer-element>
73 71
74 <script type="application/dart" src="logging.dart"></script> 72 <script type="application/dart" src="logging.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698