Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: chrome/browser/resources/md_bookmarks/shared_style.html

Issue 2981503002: [MD Bookmarks] Refactor focus ring hiding. (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698