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

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

Issue 2154413002: Converted Observatory view-footer element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Splitted attached and detached in multiple lines 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 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"> 2 <link rel="import" href="code_ref.html">
3 <link rel="import" href="function_ref.html"> 3 <link rel="import" href="function_ref.html">
4 <link rel="import" href="nav_bar.html"> 4 <link rel="import" href="nav_bar.html">
5 <link rel="import" href="observatory_element.html"> 5 <link rel="import" href="observatory_element.html">
6 <link rel="import" href="sliding_checkbox.html"> 6 <link rel="import" href="sliding_checkbox.html">
7 <link rel="import" href="view_footer.html">
8 7
9 <polymer-element name="logging-page" extends="observatory-element"> 8 <polymer-element name="logging-page" extends="observatory-element">
10 <template> 9 <template>
11 <link rel="stylesheet" href="css/shared.css"> 10 <link rel="stylesheet" href="css/shared.css">
12 <style> 11 <style>
13 .outlined { 12 .outlined {
14 -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); 13 -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
15 -moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); 14 -moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
16 box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); 15 box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
17 margin: 4px; 16 margin: 4px;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 <span>Show messages with severity <select id="severityLevelSelector" value ="{{ severityLevel }}"></select> and higher</span> 67 <span>Show messages with severity <select id="severityLevelSelector" value ="{{ severityLevel }}"></select> and higher</span>
69 <hr> 68 <hr>
70 <div class="flex-row fill"> 69 <div class="flex-row fill">
71 <div id="log" class="outlined"></div> 70 <div id="log" class="outlined"></div>
72 </div> 71 </div>
73 </div> 72 </div>
74 </template> 73 </template>
75 </polymer-element> 74 </polymer-element>
76 75
77 <script type="application/dart" src="logging.dart"></script> 76 <script type="application/dart" src="logging.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/library_view.html ('k') | runtime/observatory/lib/src/elements/objectstore_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698