| 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/html/i18n_behavior.html"> | 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 3 <link rel="import" href="chrome://resources/html/md_select_css.html"> | 3 <link rel="import" href="chrome://resources/html/md_select_css.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/paper-button/paper-butt
on.html"> | 5 <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-icon-button/paper
-icon-button-light.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tabs/paper-tabs.h
tml"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
| 9 <link rel="import" href="display_layout.html"> | 9 <link rel="import" href="display_layout.html"> |
| 10 <link rel="import" href="display_overscan_dialog.html"> | 10 <link rel="import" href="display_overscan_dialog.html"> |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 } | 37 } |
| 38 | 38 |
| 39 .textarea { | 39 .textarea { |
| 40 margin: 10px 0; | 40 margin: 10px 0; |
| 41 } | 41 } |
| 42 | 42 |
| 43 .title-text { | 43 .title-text { |
| 44 margin-top: 10px; | 44 margin-top: 10px; |
| 45 } | 45 } |
| 46 | 46 |
| 47 .info-text { | |
| 48 color: var(--paper-grey-500); | |
| 49 margin-top: 5px; | |
| 50 } | |
| 51 | |
| 52 .settings-box > paper-button:first-child { | 47 .settings-box > paper-button:first-child { |
| 53 -webkit-padding-start: 0 | 48 -webkit-padding-start: 0 |
| 54 } | 49 } |
| 55 | 50 |
| 56 paper-tab { | 51 paper-tab { |
| 57 text-transform: uppercase; | 52 text-transform: uppercase; |
| 58 } | 53 } |
| 59 | 54 |
| 60 </style> | 55 </style> |
| 61 <div class="settings-box first layout vertical self-stretch"> | 56 <div class="settings-box first layout vertical self-stretch"> |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 </div> | 155 </div> |
| 161 </div> | 156 </div> |
| 162 <button class="subpage-arrow" is="paper-icon-button-light" | 157 <button class="subpage-arrow" is="paper-icon-button-light" |
| 163 aria-label="$i18n{displayTouchCalibrationTitle}" | 158 aria-label="$i18n{displayTouchCalibrationTitle}" |
| 164 aria-describedby="touchCalibrationSecondary"></button> | 159 aria-describedby="touchCalibrationSecondary"></button> |
| 165 </div> | 160 </div> |
| 166 </div> | 161 </div> |
| 167 </template> | 162 </template> |
| 168 <script src="display.js"></script> | 163 <script src="display.js"></script> |
| 169 </dom-module> | 164 </dom-module> |
| OLD | NEW |