Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> | |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/av-icons.htm l"> | |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/communicatio n-icons.html"> | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/social-icons .html"> | |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dropdown-menu/pap er-dropdown-menu.html"> | |
| 7 <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-menu/paper-menu.h tml"> | |
| 9 <link rel="import" href="chrome://md-settings/prefs/prefs_behavior.html"> | |
| 10 <link rel="import" href="chrome://md-settings/site_settings/site_settings_behavi or.html"> | |
| 11 | |
| 12 <dom-module id="site-details-permission"> | |
| 13 <link rel="import" type="css" | |
| 14 href="chrome://md-settings/settings_page/settings_page.css"> | |
| 15 <link rel="import" type="css" href="site_details_permission.css"> | |
| 16 <template> | |
| 17 <div id="details" class="horizontal layout top" hidden> | |
|
michaelpg
2015/11/09 18:26:30
import iron-flex-layout
Finnur
2015/11/10 16:00:51
Done.
| |
| 18 <div class="left-column"> | |
| 19 <iron-icon icon="[[computeIconForContentCategory(category)]]" | |
| 20 item-icon></iron-icon> | |
| 21 </div> | |
| 22 <div class="flex right-column"> | |
| 23 <div class="permission-header" | |
| 24 >[[computeTitleForContentCategory(category)]]</div> | |
|
michaelpg
2015/11/09 18:26:30
This hack should no longer be necessary:
https://
Finnur
2015/11/10 00:36:46
I'm sorry, I don't follow... which hack?
The |tit
michaelpg
2015/11/10 00:40:45
No, I meant that putting ">" after the break so th
Finnur
2015/11/10 16:00:51
Woot! Done.
| |
| 25 <div class="permission-list"> | |
| 26 <paper-dropdown-menu> | |
| 27 <paper-menu id="permission" class="dropdown-content"> | |
| 28 <paper-item>[[i18n_.allowAction]]</paper-item> | |
| 29 <paper-item>[[i18n_.blockAction]]</paper-item> | |
| 30 </paper-menu> | |
| 31 </paper-dropdown-menu> | |
| 32 </div> | |
| 33 </div> | |
| 34 </div> | |
| 35 </template> | |
| 36 <script src="site_details_permission.js"></script> | |
| 37 </dom-module> | |
| OLD | NEW |