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

Side by Side Diff: chrome/browser/resources/settings/certificate_manager_page/certificate_entry.html

Issue 1856923002: MD Settings: Certificate manager, remove border from last certificate entry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use more CSS, less JS. Created 4 years, 8 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 | chrome/browser/resources/settings/certificate_manager_page/certificate_entry.js » ('j') | 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/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://md-settings/certificate_manager_page/certifica tes_browser_proxy.html"> 2 <link rel="import" href="chrome://md-settings/certificate_manager_page/certifica tes_browser_proxy.html">
3 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html"> 3 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop down.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop down.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml">
7 <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-icon-button/paper -icon-button.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml">
9 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> 9 <link rel="import" href="chrome://md-settings/settings_shared_css.html">
10 <link rel="import" href="chrome://md-settings/certificate_manager_page/certifica te_subentry.html"> 10 <link rel="import" href="chrome://md-settings/certificate_manager_page/certifica te_subentry.html">
11 11
12 <dom-module id="settings-certificate-entry"> 12 <dom-module id="settings-certificate-entry">
13 <template> 13 <template>
14 <style include="settings-shared"></style> 14 <style include="settings-shared"></style>
15 <div class="settings-box"> 15 <div class="settings-box">
16 <div class="start">[[model.id]]</div> 16 <div class="start">[[model.id]]</div>
17 <cr-expand-button expanded="{{expanded_}}"></cr-expand-button> 17 <cr-expand-button expanded="{{expanded_}}"></cr-expand-button>
18 </div> 18 </div>
19 <iron-collapse opened="[[expanded_]]" no-animation> 19 <iron-collapse opened="[[expanded_]]" no-animation>
20 <template is="dom-if" if="[[expanded_]]"> 20 <template is="dom-if" if="[[expanded_]]">
21 <div class="list-frame"> 21 <div class="list-frame">
22 <template is="dom-repeat" items="[[model.subnodes]]"> 22 <template is="dom-repeat" items="[[model.subnodes]]">
23 <settings-certificate-subentry model="[[item]]" 23 <settings-certificate-subentry model="[[item]]"
24 certificate-type="[[certificateType]]"> 24 certificate-type="[[certificateType]]"
25 is-last$="[[isLast_(index, model)]]">
25 </settings-certificate-subentry> 26 </settings-certificate-subentry>
26 </template> 27 </template>
27 </div> 28 </div>
28 </template> 29 </template>
29 <iron-collapse> 30 <iron-collapse>
30 </template> 31 </template>
31 <script src="certificate_entry.js"></script> 32 <script src="certificate_entry.js"></script>
32 </dom-module> 33 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/certificate_manager_page/certificate_entry.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698