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

Side by Side Diff: chrome/browser/resources/md_downloads/toolbar.css

Issue 1313453002: Make cr.ui.Focus* play nice with Shadow DOM and MD chrome://downloads (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 3 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 /* Copyright 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 :host { 5 :host {
6 @apply(--downloads-shared-style); 6 @apply(--downloads-shared-style);
7 align-items: center; 7 align-items: center;
8 background: rgb(63, 85, 102); 8 background: rgb(63, 85, 102);
9 color: white; 9 color: white;
10 content-sizing: padding-box; 10 content-sizing: padding-box;
(...skipping 18 matching lines...) Expand all
29 #actions { 29 #actions {
30 display: flex; 30 display: flex;
31 flex: none; 31 flex: none;
32 width: var(--downloads-item-width); 32 width: var(--downloads-item-width);
33 } 33 }
34 34
35 :host(:not([downloads-showing])) #actions { 35 :host(:not([downloads-showing])) #actions {
36 justify-content: center; 36 justify-content: center;
37 } 37 }
38 38
39 #actions cr-button { 39 #actions paper-button {
40 -webkit-margin-end: 8px; 40 -webkit-margin-end: 8px;
41 } 41 }
42 42
43 #actions, 43 #actions,
44 #search-term { 44 #search-term {
45 color: rgb(192, 199, 205); 45 color: rgb(192, 199, 205);
46 } 46 }
47 47
48 #search { 48 #search {
49 -webkit-padding-end: 10px; 49 -webkit-padding-end: 10px;
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 display: none; 130 display: none;
131 } 131 }
132 } 132 }
133 133
134 @media all and (max-width: 1024px) { 134 @media all and (max-width: 1024px) {
135 /* Hide #actions for narrow windows; they're shown in a vertical dot menu. */ 135 /* Hide #actions for narrow windows; they're shown in a vertical dot menu. */
136 #actions { 136 #actions {
137 display: none; 137 display: none;
138 } 138 }
139 } 139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698