| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html dir="$i18n{textdirection}" lang="$i18n{language}"> | 2 <html dir="$i18n{textdirection}" lang="$i18n{language}"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf8"> | 4 <meta charset="utf8"> |
| 5 <title>$i18n{title}</title> | 5 <title>$i18n{title}</title> |
| 6 | 6 |
| 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> | 8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> |
| 9 | 9 |
| 10 <style> | 10 <style> |
| 11 html, | 11 html, |
| 12 body { | 12 body { |
| 13 height: 100%; | 13 height: 100%; |
| 14 margin: 0; | 14 margin: 0; |
| 15 } | 15 } |
| 16 | 16 |
| 17 body { | 17 body { |
| 18 background: var(--md-background-color); | 18 background: var(--md-background-color); |
| 19 display: flex; | 19 display: flex; |
| 20 flex-direction: column; | 20 flex-direction: column; |
| 21 min-width: 800px; | 21 min-width: 800px; |
| 22 } | 22 } |
| 23 | 23 |
| 24 #toolbar { | 24 #toolbar { |
| 25 flex: 0 0 56px; | 25 flex: 0 0 56px; |
| 26 } | 26 } |
| 27 | 27 |
| 28 #history-list { | 28 #history-list, |
| 29 flex: 1 0 0; | |
| 30 overflow: auto; | |
| 31 } | |
| 32 | |
| 33 #history-synced-device-manager { | 29 #history-synced-device-manager { |
| 34 flex: 1 0 0; | 30 flex: 1 0 0; |
| 35 } | 31 } |
| 36 | 32 |
| 37 #main-container { | 33 #main-container { |
| 38 display: flex; | 34 display: flex; |
| 39 flex: 1 0 0; | 35 flex: 1 0 0; |
| 40 overflow: hidden; | 36 overflow: hidden; |
| 41 } | 37 } |
| 42 | 38 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 <link rel="import" href="chrome://resources/html/util.html"> | 89 <link rel="import" href="chrome://resources/html/util.html"> |
| 94 <link rel="import" href="chrome://resources/html/load_time_data.html"> | 90 <link rel="import" href="chrome://resources/html/load_time_data.html"> |
| 95 <link rel="import" href="chrome://history/constants.html"> | 91 <link rel="import" href="chrome://history/constants.html"> |
| 96 <script src="strings.js"></script> | 92 <script src="strings.js"></script> |
| 97 <script src="history.js"></script> | 93 <script src="history.js"></script> |
| 98 | 94 |
| 99 <link rel="import" href="chrome://history/elements.html" async id="bundle"> | 95 <link rel="import" href="chrome://history/elements.html" async id="bundle"> |
| 100 </body> | 96 </body> |
| 101 | 97 |
| 102 </html> | 98 </html> |
| OLD | NEW |