| OLD | NEW |
| 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://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 5 <link rel="import" href="/icons.html"> | 5 <link rel="import" href="/icons.html"> |
| 6 <link rel="import" href="/settings_shared_css.html"> | 6 <link rel="import" href="/settings_shared_css.html"> |
| 7 <link rel="import" href="/site_settings/constants.html"> | 7 <link rel="import" href="/site_settings/constants.html"> |
| 8 <link rel="import" href="/site_settings/site_details_permission.html"> | 8 <link rel="import" href="/site_settings/site_details_permission.html"> |
| 9 <link rel="import" href="/site_settings/site_settings_behavior.html"> | 9 <link rel="import" href="/site_settings/site_settings_behavior.html"> |
| 10 <link rel="import" href="/site_settings/website_usage_private_api.html"> | 10 <link rel="import" href="/site_settings/website_usage_private_api.html"> |
| 11 | 11 |
| 12 <dom-module id="site-details"> | 12 <dom-module id="site-details"> |
| 13 <template> | 13 <template> |
| 14 <style include="settings-shared"> | 14 <style include="settings-shared"> |
| 15 :host { | 15 :host { |
| 16 -webkit-margin-start: 4px; | 16 -webkit-margin-start: 4px; |
| 17 display: block; | 17 display: block; |
| 18 } | 18 } |
| 19 | 19 |
| 20 .origin-box { | 20 .origin-box { |
| 21 margin-bottom: 20px; | 21 margin-bottom: 20px; |
| 22 margin-top: 35px; | |
| 23 } | 22 } |
| 24 | 23 |
| 25 .origin { | 24 .origin { |
| 26 -webkit-margin-start: 10px; | 25 -webkit-margin-start: 10px; |
| 27 font-size: 110%; | |
| 28 font-weight: 500; | 26 font-weight: 500; |
| 29 } | 27 } |
| 30 | 28 |
| 31 .reset-button { | 29 .reset-button { |
| 32 -webkit-margin-start: 15px; | 30 -webkit-margin-start: 15px; |
| 33 } | 31 } |
| 34 | 32 |
| 35 #storage { | 33 #storage { |
| 36 -webkit-padding-end: 0; | 34 -webkit-padding-end: 0; |
| 37 } | 35 } |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 $i18n{siteSettingsClearAndReset} | 84 $i18n{siteSettingsClearAndReset} |
| 87 </paper-button> | 85 </paper-button> |
| 88 </div> | 86 </div> |
| 89 <website-usage-private-api id="usageApi" | 87 <website-usage-private-api id="usageApi" |
| 90 website-data-usage="{{storedData_}}" | 88 website-data-usage="{{storedData_}}" |
| 91 website-storage-type="{{storageType_}}"> | 89 website-storage-type="{{storageType_}}"> |
| 92 </website-usage-private-api> | 90 </website-usage-private-api> |
| 93 </template> | 91 </template> |
| 94 <script src="site_details.js"></script> | 92 <script src="site_details.js"></script> |
| 95 </dom-module> | 93 </dom-module> |
| OLD | NEW |