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

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

Issue 1264113004: MD downloads: use [placeholder] instead of <label> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dl-search-x
Patch Set: Created 5 years, 4 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_downloads/toolbar.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 27 matching lines...) Expand all
38 } 38 }
39 39
40 #search-term { 40 #search-term {
41 --paper-input-container-color: rgba(255, 255, 255, .5); 41 --paper-input-container-color: rgba(255, 255, 255, .5);
42 --paper-input-container-focus-color: white; 42 --paper-input-container-focus-color: white;
43 --paper-input-container-input: { 43 --paper-input-container-input: {
44 font-family: inherit; 44 font-family: inherit;
45 font-size: 14px; 45 font-size: 14px;
46 }; 46 };
47 --paper-input-container-input-color: white; 47 --paper-input-container-input-color: white;
48 --paper-input-container-label: {
49 font-family: inherit;
50 font-size: 14px;
51 };
52 -webkit-margin-end: 8px; 48 -webkit-margin-end: 8px;
53 z-index: 0; 49 z-index: 0;
54 } 50 }
55 51
56 #search-term input[type='search']::-webkit-search-cancel-button, 52 #search-term input[type='search']::-webkit-search-cancel-button,
57 #search-term input[type='search']::-webkit-search-results-button { 53 #search-term input[type='search']::-webkit-search-results-button {
58 -webkit-appearance: none; 54 -webkit-appearance: none;
59 } 55 }
60 56
61 #search-term paper-icon-button { 57 #search-term paper-icon-button {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 display: none; 125 display: none;
130 } 126 }
131 } 127 }
132 128
133 @media all and (max-width: 1024px) { 129 @media all and (max-width: 1024px) {
134 /* Hide #actions for narrow windows; they're shown in a vertical dot menu. */ 130 /* Hide #actions for narrow windows; they're shown in a vertical dot menu. */
135 #actions { 131 #actions {
136 display: none; 132 display: none;
137 } 133 }
138 } 134 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_downloads/toolbar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698