| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/action_link.html"> | 1 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 2 <link rel="import" href="chrome://resources/html/cr.html"> | 2 <link rel="import" href="chrome://resources/html/cr.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-behaviors/paper-i
nky-focus-behavior.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-behaviors/paper-i
nky-focus-behavior.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-pr
ogress.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-pr
ogress.html"> |
| 9 <link rel="import" href="chrome://downloads/action_service.html"> | 8 <link rel="import" href="chrome://downloads/action_service.html"> |
| 10 <link rel="import" href="chrome://downloads/constants.html"> | 9 <link rel="import" href="chrome://downloads/constants.html"> |
| 11 <link rel="import" href="chrome://downloads/i18n_setup.html"> | 10 <link rel="import" href="chrome://downloads/i18n_setup.html"> |
| 11 <link rel="import" href="chrome://downloads/icons.html"> |
| 12 | 12 |
| 13 <dom-module id="inky-text-button"> | 13 <dom-module id="inky-text-button"> |
| 14 <template><content></content></template> | 14 <template><content></content></template> |
| 15 <style> | 15 <style> |
| 16 :host { | 16 :host { |
| 17 -webkit-user-select: none; | 17 -webkit-user-select: none; |
| 18 cursor: pointer; | 18 cursor: pointer; |
| 19 display: inline-block; | 19 display: inline-block; |
| 20 outline: none; | 20 outline: none; |
| 21 position: relative; | 21 position: relative; |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 <div id="incognito" title="$i18n{inIncognito}" hidden="[[!data.otr]]"> | 115 <div id="incognito" title="$i18n{inIncognito}" hidden="[[!data.otr]]"> |
| 116 </div> | 116 </div> |
| 117 </div> | 117 </div> |
| 118 | 118 |
| 119 </template> | 119 </template> |
| 120 <link rel="import" type="css" href="chrome://resources/css/action_link.css"> | 120 <link rel="import" type="css" href="chrome://resources/css/action_link.css"> |
| 121 <link rel="import" type="css" href="chrome://downloads/shared_style.css"> | 121 <link rel="import" type="css" href="chrome://downloads/shared_style.css"> |
| 122 <link rel="import" type="css" href="chrome://downloads/item.css"> | 122 <link rel="import" type="css" href="chrome://downloads/item.css"> |
| 123 <script src="chrome://downloads/item.js"></script> | 123 <script src="chrome://downloads/item.js"></script> |
| 124 </dom-module> | 124 </dom-module> |
| OLD | NEW |