| OLD | NEW |
| 1 <head> | 1 <head> |
| 2 <link rel="import" href="curly_block.html"> | 2 <link rel="import" href="curly_block.html"> |
| 3 <link rel="import" href="eval_box.html"> | 3 <link rel="import" href="eval_box.html"> |
| 4 <link rel="import" href="field_ref.html"> | 4 <link rel="import" href="field_ref.html"> |
| 5 <link rel="import" href="function_ref.html"> | 5 <link rel="import" href="function_ref.html"> |
| 6 <link rel="import" href="instance_ref.html"> | 6 <link rel="import" href="instance_ref.html"> |
| 7 <link rel="import" href="library_ref.html"> | 7 <link rel="import" href="library_ref.html"> |
| 8 <link rel="import" href="nav_bar.html"> | 8 <link rel="import" href="nav_bar.html"> |
| 9 <link rel="import" href="observatory_element.html"> | 9 <link rel="import" href="observatory_element.html"> |
| 10 <link rel="import" href="script_ref.html"> | 10 <link rel="import" href="script_ref.html"> |
| 11 </head> | 11 </head> |
| 12 <polymer-element name="class-view" extends="observatory-element"> | 12 <polymer-element name="class-view" extends="observatory-element"> |
| 13 <template> | 13 <template> |
| 14 <style> | 14 <link rel="stylesheet" href="css/shared.css"> |
| 15 .content { | |
| 16 padding-left: 10%; | |
| 17 font: 400 14px 'Montserrat', sans-serif; | |
| 18 } | |
| 19 h1 { | |
| 20 font: 400 18px 'Montserrat', sans-serif; | |
| 21 } | |
| 22 .memberList { | |
| 23 display: table; | |
| 24 } | |
| 25 .memberItem { | |
| 26 display: table-row; | |
| 27 } | |
| 28 .memberName, .memberValue { | |
| 29 display: table-cell; | |
| 30 vertical-align: top; | |
| 31 padding: 3px 0 3px 1em; | |
| 32 font: 400 14px 'Montserrat', sans-serif; | |
| 33 } | |
| 34 </style> | |
| 35 | |
| 36 <nav-bar> | 15 <nav-bar> |
| 37 <top-nav-menu></top-nav-menu> | 16 <top-nav-menu></top-nav-menu> |
| 38 <isolate-nav-menu isolate="{{ cls.isolate }}"></isolate-nav-menu> | 17 <isolate-nav-menu isolate="{{ cls.isolate }}"></isolate-nav-menu> |
| 39 <library-nav-menu library="{{ cls['library'] }}"></library-nav-menu> | 18 <library-nav-menu library="{{ cls['library'] }}"></library-nav-menu> |
| 40 <class-nav-menu cls="{{ cls }}" last="{{ true }}"></class-nav-menu> | 19 <class-nav-menu cls="{{ cls }}" last="{{ true }}"></class-nav-menu> |
| 41 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 20 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 42 </nav-bar> | 21 </nav-bar> |
| 43 | 22 |
| 44 <div class="content"> | 23 <div class="content"> |
| 45 <h1> | 24 <h1> |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 <hr> | 135 <hr> |
| 157 | 136 |
| 158 <div class="content"> | 137 <div class="content"> |
| 159 <eval-box callback="{{ eval }}"></eval-box> | 138 <eval-box callback="{{ eval }}"></eval-box> |
| 160 </div> | 139 </div> |
| 161 <br><br><br><br> | 140 <br><br><br><br> |
| 162 <br><br><br><br> | 141 <br><br><br><br> |
| 163 </template> | 142 </template> |
| 164 <script type="application/dart" src="class_view.dart"></script> | 143 <script type="application/dart" src="class_view.dart"></script> |
| 165 </polymer-element> | 144 </polymer-element> |
| OLD | NEW |