| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> | 4 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> |
| 5 <link rel="stylesheet" href="chrome://resources/css/bubble.css"> |
| 6 <link rel="stylesheet" href="chrome://resources/css/bubble_button.css"> |
| 7 <link rel="stylesheet" href="chrome://resources/css/controlled_indicator.css"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu
tton.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu
tton.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-
progress.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-
progress.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas
ses/iron-flex-layout.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas
ses/iron-flex-layout.html"> |
| 8 <style is="custom-style"> | 11 <style is="custom-style"> |
| 9 paper-progress { | 12 paper-progress { |
| 10 display: block; | 13 display: block; |
| 11 margin: auto; | 14 margin: auto; |
| 12 padding: 112px 0 0 0; | 15 padding: 112px 0 0 0; |
| 13 width: 360px; | 16 width: 360px; |
| 14 } | 17 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 33 } | 36 } |
| 34 paper-button.white { | 37 paper-button.white { |
| 35 background: white; | 38 background: white; |
| 36 color: rgb(66, 133, 244); | 39 color: rgb(66, 133, 244); |
| 37 } | 40 } |
| 38 </style> | 41 </style> |
| 39 <link rel="stylesheet" href="main.css"> | 42 <link rel="stylesheet" href="main.css"> |
| 40 <script src="chrome://resources/js/load_time_data.js"></script> | 43 <script src="chrome://resources/js/load_time_data.js"></script> |
| 41 <script src="chrome://resources/js/util.js"></script> | 44 <script src="chrome://resources/js/util.js"></script> |
| 42 <script src="chrome://resources/js/i18n_template_no_process.js"></script> | 45 <script src="chrome://resources/js/i18n_template_no_process.js"></script> |
| 46 <script src="chrome://resources/js/cr.js"></script> |
| 47 <script src="chrome://resources/js/event_tracker.js"></script> |
| 48 <script src="chrome://resources/js/cr/ui.js"></script> |
| 49 <script src="chrome://resources/js/cr/ui/bubble.js"></script> |
| 50 <script src="chrome://resources/js/cr/ui/bubble_button.js"></script> |
| 51 <script src="chrome://resources/js/cr/ui/controlled_indicator.js"></script> |
| 43 </head> | 52 </head> |
| 44 <body> | 53 <body> |
| 45 <div id="terms-loading" class="section"> | 54 <div id="terms-loading" class="section"> |
| 46 <img class="image-header" src="images/header.png"> | 55 <img class="image-header" src="images/header.png"> |
| 47 <div class="scrollable"> | 56 <div class="scrollable"> |
| 48 <div class="content"> | 57 <div class="content"> |
| 49 <p class="text-title" i18n-content="greetingHeader"></p> | 58 <p class="text-title" i18n-content="greetingHeader"></p> |
| 50 <p class="text-desc" i18n-content="greetingDescription"></p> | 59 <p class="text-desc" i18n-content="greetingDescription"></p> |
| 51 <paper-progress class="blue" indeterminate></paper-progress> | 60 <paper-progress class="blue" indeterminate></paper-progress> |
| 52 </div> | 61 </div> |
| 53 </div> | 62 </div> |
| 54 </div> | 63 </div> |
| 55 <div id="terms" class="section" hidden> | 64 <div id="terms" class="section" hidden> |
| 56 <img class="image-header" src="images/header.png"> | 65 <img class="image-header" src="images/header.png"> |
| 57 <div class="scrollable" > | 66 <div class="scrollable" > |
| 58 <div class="content section-flex"> | 67 <div class="content section-flex"> |
| 59 <p class="text-title" i18n-content="greetingHeader"></p> | 68 <p class="text-title" i18n-content="greetingHeader"></p> |
| 60 <p class="text-desc" i18n-content="greetingDescription"></p> | 69 <p class="text-desc" i18n-content="greetingDescription"></p> |
| 61 <p class="text-terms-title" i18n-content="termsOfService"></p> | 70 <p class="text-terms-title" id="terms-title" |
| 71 i18n-content="termsOfService"></p> |
| 62 <div class="section-terms" id ="terms-container"> | 72 <div class="section-terms" id ="terms-container"> |
| 63 <webview id="terms-view" partition="persist:arc_support"></webview> | 73 <webview id="terms-view" partition="persist:arc_support"></webview> |
| 64 </div> | 74 </div> |
| 65 <label class="layout horizontal section-checkbox-container"> | 75 <label class="layout horizontal section-checkbox-container"> |
| 66 <div class="checkbox-container" id="enable-metrics-container" hidden> | 76 <div class="checkbox-container" id="enable-metrics-container" hidden> |
| 67 <input type="checkbox" class="checkbox-option" id="enable-metrics"> | 77 <input type="checkbox" class="checkbox-option" id="enable-metrics"> |
| 68 </div> | 78 </div> |
| 69 <p class="checkbox-text" id="text-metrics"></p> | 79 <p class="checkbox-text" id="text-metrics"></p> |
| 70 </label> | 80 </label> |
| 71 <label class="layout horizontal section-checkbox-container"> | 81 <label class="layout horizontal section-checkbox-container"> |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 <paper-button class="blue" id="button-send-feedback" | 135 <paper-button class="blue" id="button-send-feedback" |
| 126 i18n-content="buttonSendFeedback"> | 136 i18n-content="buttonSendFeedback"> |
| 127 </paper-button> | 137 </paper-button> |
| 128 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry"> | 138 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry"> |
| 129 </paper-button> | 139 </paper-button> |
| 130 </div> | 140 </div> |
| 131 </div> | 141 </div> |
| 132 </div> | 142 </div> |
| 133 </body> | 143 </body> |
| 134 </html> | 144 </html> |
| OLD | NEW |