| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 | 2 |
| 3 <link rel="import" href="chrome://resources/html/assert.html"> | 3 <link rel="import" href="chrome://resources/html/assert.html"> |
| 4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> | 4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> |
| 5 <link rel="import" href="about_page_browser_proxy.html"> | 5 <link rel="import" href="about_page_browser_proxy.html"> |
| 6 <link rel="import" href="channel_switcher_dialog.html"> | 6 <link rel="import" href="channel_switcher_dialog.html"> |
| 7 <link rel="import" href="../i18n_setup.html"> | 7 <link rel="import" href="../i18n_setup.html"> |
| 8 <link rel="import" href="../settings_shared_css.html"> | 8 <link rel="import" href="../settings_shared_css.html"> |
| 9 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat
or.html"> | 9 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat
or.html"> |
| 10 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 10 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 12 | 12 |
| 13 <dom-module id="settings-detailed-build-info"> | 13 <dom-module id="settings-detailed-build-info"> |
| 14 <template> | 14 <template> |
| 15 <style include="settings-shared"> | 15 <style include="settings-shared"> |
| 16 .secondary { | 16 .secondary { |
| 17 -webkit-user-select: text; | 17 -webkit-user-select: text; |
| 18 } | 18 } |
| 19 | 19 |
| 20 cr-policy-indicator { | 20 cr-policy-indicator { |
| 21 -webkit-margin-start: 8px; | 21 -webkit-margin-start: var(--cr-controlled-by-spacing); |
| 22 } | 22 } |
| 23 | 23 |
| 24 /* The command line string can contain very long substrings that | 24 /* The command line string can contain very long substrings that |
| 25 * don't have any spaces, need to force a line break in such cases. */ | 25 * don't have any spaces, need to force a line break in such cases. */ |
| 26 #command-line { | 26 #command-line { |
| 27 overflow-wrap: break-word; | 27 overflow-wrap: break-word; |
| 28 width: 100%; | 28 width: 100%; |
| 29 } | 29 } |
| 30 </style> | 30 </style> |
| 31 <div class="settings-box two-line single-column"> | 31 <div class="settings-box two-line single-column"> |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 <div>$i18n{aboutCommandLineLabel}</div> | 82 <div>$i18n{aboutCommandLineLabel}</div> |
| 83 <div id="command-line" class="secondary">$i18n{aboutCommandLine}</div> | 83 <div id="command-line" class="secondary">$i18n{aboutCommandLine}</div> |
| 84 </div> | 84 </div> |
| 85 <div class="settings-box two-line single-column"> | 85 <div class="settings-box two-line single-column"> |
| 86 <div>$i18n{aboutBuildDateLabel}</div> | 86 <div>$i18n{aboutBuildDateLabel}</div> |
| 87 <div class="secondary">$i18n{aboutBuildDate}</div> | 87 <div class="secondary">$i18n{aboutBuildDate}</div> |
| 88 </div> | 88 </div> |
| 89 </template> | 89 </template> |
| 90 <script src="detailed_build_info.js"></script> | 90 <script src="detailed_build_info.js"></script> |
| 91 </dom-module> | 91 </dom-module> |
| OLD | NEW |