| OLD | NEW |
| 1 <link rel="import" href="chrome://bookmarks/shared_vars.html"> | 1 <link rel="import" href="chrome://bookmarks/shared_vars.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/hidden_style_css.html"> |
| 2 | 3 |
| 3 <dom-module id="shared-style"> | 4 <dom-module id="shared-style"> |
| 4 <template> | 5 <template> |
| 5 <style> | 6 <style include="cr-hidden-style"> |
| 6 [hidden] { | |
| 7 display: none !important; | |
| 8 } | |
| 9 | |
| 10 button.more-vert-button { | 7 button.more-vert-button { |
| 11 height: 36px; | 8 height: 36px; |
| 12 padding: 8px; | 9 padding: 8px; |
| 13 width: 36px; | 10 width: 36px; |
| 14 } | 11 } |
| 15 | 12 |
| 16 button.more-vert-button div { | 13 button.more-vert-button div { |
| 17 border: 2px solid var(--secondary-text-color); | 14 border: 2px solid var(--secondary-text-color); |
| 18 border-radius: 2px; | 15 border-radius: 2px; |
| 19 margin: 1px 8px; | 16 margin: 1px 8px; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 bottom: 0; | 57 bottom: 0; |
| 61 transform: translateY(50%); | 58 transform: translateY(50%); |
| 62 } | 59 } |
| 63 | 60 |
| 64 .drag-on { | 61 .drag-on { |
| 65 background-color: rgba(66, 133, 244, 0.16); | 62 background-color: rgba(66, 133, 244, 0.16); |
| 66 } | 63 } |
| 67 </style> | 64 </style> |
| 68 </template> | 65 </template> |
| 69 </dom-module> | 66 </dom-module> |
| OLD | NEW |