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

Side by Side Diff: chrome/browser/resources/md_extensions/detail_view.html

Issue 2327833003: [MD Extensions] Fix border css for detail view (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698