Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://bookmarks/shared_vars.html"> | |
| 2 <dom-module id="shared-style"> | |
|
tsergeant
2016/12/22 04:33:01
Nit: newline before this.
angelayang
2016/12/28 00:49:38
Done.
| |
| 3 <template> | |
| 4 <style> | |
| 5 [hidden] { | |
| 6 display: none !important; | |
| 7 } | |
| 8 | |
| 9 button.more-vert-button { | |
| 10 height: 36px; | |
| 11 padding: 8px; | |
| 12 width: 36px; | |
| 13 } | |
| 14 | |
| 15 button.more-vert-button div { | |
| 16 border: 2px solid var(--secondary-text-color); | |
| 17 border-radius: 2px; | |
| 18 margin: 1px 8px; | |
| 19 pointer-events: none; | |
| 20 transform: scale(0.8); | |
| 21 } | |
| 22 | |
| 23 .dropdown-item { | |
|
tsergeant
2016/12/22 04:33:01
As of this morning, these styles are no longer nec
angelayang
2016/12/28 00:49:38
Done.
| |
| 24 background: none; | |
| 25 border: none; | |
| 26 cursor: pointer; | |
| 27 display: flex; | |
| 28 font: inherit; | |
| 29 min-height: 32px; | |
| 30 padding: 8px 24px; | |
| 31 width: 100%; | |
| 32 } | |
| 33 | |
| 34 hr { | |
| 35 background: rgba(0, 0, 0, 0.11); | |
| 36 border-width: 0; | |
| 37 height: 1px; | |
| 38 margin: 8px 0; | |
| 39 } | |
| 40 </style> | |
| 41 </template> | |
| 42 </dom-module> | |
| OLD | NEW |