| 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 .card-title { | 10 .card-title { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 | 51 |
| 52 .website-title { | 52 .website-title { |
| 53 color: var(--primary-text-color); | 53 color: var(--primary-text-color); |
| 54 overflow: hidden; | 54 overflow: hidden; |
| 55 text-decoration: none; | 55 text-decoration: none; |
| 56 text-overflow: ellipsis; | 56 text-overflow: ellipsis; |
| 57 white-space: nowrap; | 57 white-space: nowrap; |
| 58 } | 58 } |
| 59 | 59 |
| 60 button.icon-button { | 60 button.icon-button { |
| 61 background: none; |
| 62 border: none; |
| 61 height: 36px; | 63 height: 36px; |
| 64 outline: none; |
| 62 width: 36px; | 65 width: 36px; |
| 63 } | 66 } |
| 64 | 67 |
| 65 button.icon-button iron-icon { | 68 button.icon-button iron-icon { |
| 66 color: var(--secondary-text-color); | 69 color: var(--secondary-text-color); |
| 67 height: 20px; | 70 height: 20px; |
| 68 width: 20px; | 71 width: 20px; |
| 69 } | 72 } |
| 70 | 73 |
| 71 button.more-vert-button { | 74 button.more-vert-button { |
| 72 height: 36px; | 75 height: 36px; |
| 73 padding: 6px; | 76 padding: 6px; |
| 74 width: 36px; | 77 width: 36px; |
| 75 } | 78 } |
| 76 | 79 |
| 77 button.more-vert-button div { | 80 button.more-vert-button div { |
| 78 border: 2px solid var(--secondary-text-color); | 81 border: 2px solid var(--secondary-text-color); |
| 79 border-radius: 2px; | 82 border-radius: 2px; |
| 80 margin: 1px 10px; | 83 margin: 1px 10px; |
| 81 pointer-events: none; | 84 pointer-events: none; |
| 82 transform: scale(0.8); | 85 transform: scale(0.8); |
| 83 } | 86 } |
| 84 </style> | 87 </style> |
| 85 </template> | 88 </template> |
| 86 </dom-module> | 89 </dom-module> |
| OLD | NEW |