| OLD | NEW |
| 1 <link rel="import" href="chrome://downloads/action_service.html"> | 1 <link rel="import" href="chrome://downloads/action_service.html"> |
| 2 <link rel="import" href="chrome://resources/html/assert.html"> | 2 <link rel="import" href="chrome://resources/html/assert.html"> |
| 3 <link rel="import" href="chrome://resources/html/cr.html"> | 3 <link rel="import" href="chrome://resources/html/cr.html"> |
| 4 <link rel="import" href="chrome://resources/html/polymer.html"> | 4 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 5 <link rel="import" href="chrome://resources/html/util.html"> | 5 <link rel="import" href="chrome://resources/html/util.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h
tml"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h
tml"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h
tml"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h
tml"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu-button/paper
-menu-button.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu-button/paper
-menu-button.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 10 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> | 10 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 } | 26 } |
| 27 | 27 |
| 28 #toolbar { | 28 #toolbar { |
| 29 --cr-toolbar-field-end-padding: 0; | 29 --cr-toolbar-field-end-padding: 0; |
| 30 --cr-toolbar-field-width: var(--downloads-card-width); | 30 --cr-toolbar-field-width: var(--downloads-card-width); |
| 31 --cr-toolbar-header-wide: { | 31 --cr-toolbar-header-wide: { |
| 32 -webkit-margin-start: 24px; | 32 -webkit-margin-start: 24px; |
| 33 -webkit-margin-end: 16px; /* Only matters around 900px in Russian. */ | 33 -webkit-margin-end: 16px; /* Only matters around 900px in Russian. */ |
| 34 }; | 34 }; |
| 35 --cr-toolbar-left-content-wide: { | 35 --cr-toolbar-left-content-wide: { |
| 36 -webkit-margin-start: 0; | 36 -webkit-padding-start: 0; |
| 37 flex: 1 0 1px; | 37 flex: 1 0 1px; |
| 38 max-width: none; | 38 max-width: none; |
| 39 position: static; | 39 position: static; |
| 40 }; | 40 }; |
| 41 --cr-toolbar-right-content-wide: { | 41 --cr-toolbar-right-content-wide: { |
| 42 flex: 1 0 1px; | 42 flex: 1 0 1px; |
| 43 position: static; | 43 position: static; |
| 44 }; | 44 }; |
| 45 align-items: center; | 45 align-items: center; |
| 46 flex: 1; | 46 flex: 1; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 on-blur="onItemBlur_"> | 101 on-blur="onItemBlur_"> |
| 102 $i18n{openDownloadsFolder} | 102 $i18n{openDownloadsFolder} |
| 103 </paper-item> | 103 </paper-item> |
| 104 </paper-menu> | 104 </paper-menu> |
| 105 </paper-menu-button> | 105 </paper-menu-button> |
| 106 </div> | 106 </div> |
| 107 </cr-toolbar> | 107 </cr-toolbar> |
| 108 </template> | 108 </template> |
| 109 <script src="chrome://downloads/toolbar.js"></script> | 109 <script src="chrome://downloads/toolbar.js"></script> |
| 110 </dom-module> | 110 </dom-module> |
| OLD | NEW |