| OLD | NEW |
| 1 <link rel="import" href="chrome://history/shared_vars.html"> | 1 <link rel="import" href="chrome://history/shared_vars.html"> |
| 2 | 2 |
| 3 <dom-module id="shared-style"> | 3 <dom-module id="shared-style"> |
| 4 <template> | 4 <template> |
| 5 <style> | 5 <style> |
| 6 [hidden] { | 6 [hidden] { |
| 7 display: none !important; | 7 display: none !important; |
| 8 } | 8 } |
| 9 | 9 |
| 10 a { | 10 a { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 color: var(--primary-text-color); | 49 color: var(--primary-text-color); |
| 50 overflow: hidden; | 50 overflow: hidden; |
| 51 text-decoration: none; | 51 text-decoration: none; |
| 52 text-overflow: ellipsis; | 52 text-overflow: ellipsis; |
| 53 white-space: nowrap; | 53 white-space: nowrap; |
| 54 } | 54 } |
| 55 | 55 |
| 56 button.icon-button { | 56 button.icon-button { |
| 57 background: none; | 57 background: none; |
| 58 border: none; | 58 border: none; |
| 59 color: inherit; |
| 59 height: 36px; | 60 height: 36px; |
| 60 outline: none; | 61 outline: none; |
| 61 width: 36px; | 62 width: 36px; |
| 62 } | 63 } |
| 63 | 64 |
| 64 button.icon-button iron-icon { | 65 button.icon-button iron-icon { |
| 65 height: 20px; | 66 height: 20px; |
| 66 width: 20px; | 67 width: 20px; |
| 67 } | 68 } |
| 68 | 69 |
| 69 button.more-vert-button { | 70 button.more-vert-button { |
| 70 height: 36px; | 71 height: 36px; |
| 71 padding: 8px; | 72 padding: 8px; |
| 72 width: 36px; | 73 width: 36px; |
| 73 } | 74 } |
| 74 | 75 |
| 75 button.more-vert-button div { | 76 button.more-vert-button div { |
| 76 border: 2px solid var(--secondary-text-color); | 77 border: 2px solid var(--secondary-text-color); |
| 77 border-radius: 2px; | 78 border-radius: 2px; |
| 78 margin: 1px 8px; | 79 margin: 1px 8px; |
| 79 pointer-events: none; | 80 pointer-events: none; |
| 80 transform: scale(0.8); | 81 transform: scale(0.8); |
| 81 } | 82 } |
| 82 </style> | 83 </style> |
| 83 </template> | 84 </template> |
| 84 </dom-module> | 85 </dom-module> |
| OLD | NEW |