| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 7 <link rel="import" href="../icons.html"> | 7 <link rel="import" href="../icons.html"> |
| 8 <link rel="import" href="../settings_shared_css.html"> | 8 <link rel="import" href="../settings_shared_css.html"> |
| 9 | 9 |
| 10 <dom-module id="settings-display-overscan-dialog"> | 10 <dom-module id="settings-display-overscan-dialog"> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 } | 35 } |
| 36 | 36 |
| 37 #move > div.shift { | 37 #move > div.shift { |
| 38 background: black; | 38 background: black; |
| 39 color: white; | 39 color: white; |
| 40 font-size: 100%; | 40 font-size: 100%; |
| 41 margin: 0 8px; | 41 margin: 0 8px; |
| 42 padding: 4px 8px 0; | 42 padding: 4px 8px 0; |
| 43 } | 43 } |
| 44 </style> | 44 </style> |
| 45 <dialog is="cr-dialog" id="dialog" on-close="close"> | 45 <dialog is="cr-dialog" id="dialog" on-close="close" |
| 46 close-text="$i18n{close}"> |
| 46 <div class="title">$i18n{displayOverscanPageTitle}</div> | 47 <div class="title">$i18n{displayOverscanPageTitle}</div> |
| 47 <div class="body"> | 48 <div class="body"> |
| 48 <div class="subtitle" >$i18n{displayOverscanSubtitle}</div> | 49 <div class="subtitle" >$i18n{displayOverscanSubtitle}</div> |
| 49 <div class="instructions" >$i18n{displayOverscanInstructions}</div> | 50 <div class="instructions" >$i18n{displayOverscanInstructions}</div> |
| 50 <div class="details layout horizontal around-justified self-stretch"> | 51 <div class="details layout horizontal around-justified self-stretch"> |
| 51 <div class="layout vertical center"> | 52 <div class="layout vertical center"> |
| 52 <div class="layout horizontal"> | 53 <div class="layout horizontal"> |
| 53 <iron-icon icon="cr:expand-less"></iron-icon> | 54 <iron-icon icon="cr:expand-less"></iron-icon> |
| 54 </div> | 55 </div> |
| 55 <div class="layout horizontal"> | 56 <div class="layout horizontal"> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 76 $i18n{displayOverscanReset} | 77 $i18n{displayOverscanReset} |
| 77 </paper-button> | 78 </paper-button> |
| 78 <paper-button class="primary-button" on-tap="onSaveTap_"> | 79 <paper-button class="primary-button" on-tap="onSaveTap_"> |
| 79 $i18n{ok} | 80 $i18n{ok} |
| 80 </paper-button> | 81 </paper-button> |
| 81 </div> | 82 </div> |
| 82 </dialog> | 83 </dialog> |
| 83 </template> | 84 </template> |
| 84 <script src="display_overscan_dialog.js"></script> | 85 <script src="display_overscan_dialog.js"></script> |
| 85 </dom-module> | 86 </dom-module> |
| OLD | NEW |