| OLD | NEW |
| 1 <link rel="import" href="chrome://bookmarks/shared_vars.html"> | 1 <link rel="import" href="chrome://bookmarks/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 button.more-vert-button { | 10 button.more-vert-button { |
| 11 height: 36px; | 11 height: 36px; |
| 12 padding: 8px; | 12 padding: 8px; |
| 13 width: 36px; | 13 width: 36px; |
| 14 } | 14 } |
| 15 | 15 |
| 16 button.more-vert-button div { | 16 button.more-vert-button div { |
| 17 border: 2px solid var(--secondary-text-color); | 17 border: 2px solid var(--secondary-text-color); |
| 18 border-radius: 2px; | 18 border-radius: 2px; |
| 19 margin: 1px 8px; | 19 margin: 1px 8px; |
| 20 pointer-events: none; | 20 pointer-events: none; |
| 21 transform: scale(0.8); | 21 transform: scale(0.8); |
| 22 } | 22 } |
| 23 | 23 |
| 24 hr { | 24 hr { |
| 25 background: rgba(0, 0, 0, 0.11); | 25 background: rgba(0, 0, 0, 0.11); |
| 26 border-width: 0; | 26 border-width: 0; |
| 27 height: 1px; | 27 height: 1px; |
| 28 margin: 8px 0; | 28 margin: 8px 0; |
| 29 } | 29 } |
| 30 |
| 31 paper-button { |
| 32 height: 32px; |
| 33 margin: 0; |
| 34 } |
| 30 </style> | 35 </style> |
| 31 </template> | 36 </template> |
| 32 </dom-module> | 37 </dom-module> |
| OLD | NEW |