| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/cr.html"> | 1 <link rel="import" href="chrome://resources/html/cr.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable-behavior.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable-behavior.html"> |
| 9 <link rel="import" href="chrome://extensions/animation_helper.html"> | 9 <link rel="import" href="chrome://extensions/animation_helper.html"> |
| 10 <link rel="import" href="chrome://extensions/item_source.html"> | 10 <link rel="import" href="chrome://extensions/item_source.html"> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 color: var(--paper-grey-600); | 23 color: var(--paper-grey-600); |
| 24 display: flex; | 24 display: flex; |
| 25 height: 40px; | 25 height: 40px; |
| 26 margin-bottom: 30px; | 26 margin-bottom: 30px; |
| 27 padding: 8px 12px 0; | 27 padding: 8px 12px 0; |
| 28 } | 28 } |
| 29 #name { | 29 #name { |
| 30 flex-grow: 1; | 30 flex-grow: 1; |
| 31 } | 31 } |
| 32 .section { | 32 .section { |
| 33 border-bottom: var(--paper-grey-600); | 33 border-bottom: 1px solid var(--paper-grey-400); |
| 34 padding: 12px 20px; | 34 padding: 12px 20px; |
| 35 } | 35 } |
| 36 .section:last-child { | 36 .section:last-child { |
| 37 border: none; | 37 border: none; |
| 38 } | 38 } |
| 39 .section-title { | 39 .section-title { |
| 40 color: var(--paper-grey-800); | 40 color: var(--paper-grey-800); |
| 41 } | 41 } |
| 42 .section-content { | 42 .section-content { |
| 43 color: var(--paper-grey-600); | 43 color: var(--paper-grey-600); |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 <div class="section"> | 137 <div class="section"> |
| 138 <div class="section-title">$i18n{itemSource}</div> | 138 <div class="section-title">$i18n{itemSource}</div> |
| 139 <div class="section-content"> | 139 <div class="section-content"> |
| 140 [[computeSourceString_(data.*)]] | 140 [[computeSourceString_(data.*)]] |
| 141 </div> | 141 </div> |
| 142 </div> | 142 </div> |
| 143 </div> | 143 </div> |
| 144 </template> | 144 </template> |
| 145 <script src="chrome://extensions/detail_view.js"></script> | 145 <script src="chrome://extensions/detail_view.js"></script> |
| 146 </dom-module> | 146 </dom-module> |
| OLD | NEW |