OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html i18n-values="dir:textdirection;lang:language"> | 2 <html i18n-values="dir:textdirection;lang:language"> |
3 <head> | 3 <head> |
4 <meta charset="utf8"> | 4 <meta charset="utf8"> |
5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
6 | 6 |
7 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> | 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | |
9 | 8 |
10 <style> | 9 <style> |
11 html, | 10 html, |
12 body { | 11 body { |
13 height: 100%; | 12 height: 100%; |
14 margin: 0; | 13 margin: 0; |
15 } | 14 } |
16 | 15 |
17 body { | 16 body { |
18 background: #f2f2f2; | 17 background: #f2f2f2; |
19 display: flex; | 18 display: flex; |
20 flex-direction: column; | 19 flex-direction: column; |
21 font-family: Roboto; | |
22 font-size: 13px; | |
23 } | 20 } |
24 | 21 |
25 #toolbar { | 22 #toolbar { |
26 flex: 0 0 56px; | 23 flex: 0 0 56px; |
27 } | 24 } |
28 | 25 |
29 #history-list { | 26 #history-list { |
30 flex: 1 0 0; | 27 flex: 1 0 0; |
31 overflow: auto; | 28 overflow: auto; |
32 } | 29 } |
(...skipping 13 matching lines...) Expand all Loading... |
46 <link rel="import" href="chrome://history/history_list.html"> | 43 <link rel="import" href="chrome://history/history_list.html"> |
47 <link rel="import" href="chrome://history/history_toolbar.html"> | 44 <link rel="import" href="chrome://history/history_toolbar.html"> |
48 | 45 |
49 <script src="history.js"></script> | 46 <script src="history.js"></script> |
50 | 47 |
51 <!-- Prepare strings and perform i18n substitutions. --> | 48 <!-- Prepare strings and perform i18n substitutions. --> |
52 <link rel="import" href="chrome://resources/html/i18n_template.html"> | 49 <link rel="import" href="chrome://resources/html/i18n_template.html"> |
53 </body> | 50 </body> |
54 | 51 |
55 </html> | 52 </html> |
OLD | NEW |