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/shared_style_css.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> |
3 | 3 |
4 <dom-module id="shared-style"> | 4 <dom-module id="shared-style"> |
5 <template> | 5 <template> |
6 <style include="cr-shared-style"> | 6 <style include="cr-shared-style"> |
7 button.more-vert-button { | 7 button.more-vert-button { |
8 padding: 8px; | 8 padding: 8px; |
9 } | 9 } |
10 | 10 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 | 48 |
49 .drag-below::after { | 49 .drag-below::after { |
50 bottom: 0; | 50 bottom: 0; |
51 transform: translateY(50%); | 51 transform: translateY(50%); |
52 } | 52 } |
53 | 53 |
54 .drag-on { | 54 .drag-on { |
55 background-color: var(--highlight-color); | 55 background-color: var(--highlight-color); |
56 } | 56 } |
57 | 57 |
58 .mouse-focus { | 58 :host-context([hide-focus-ring]) [tabindex]:focus { |
59 outline: none; | 59 outline: none; |
60 } | 60 } |
61 </style> | 61 </style> |
62 </template> | 62 </template> |
63 </dom-module> | 63 </dom-module> |
OLD | NEW |