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

Side by Side Diff: chrome/browser/resources/media_router/elements/media_router_header/media_router_header.css

Issue 1680743006: [Media Router] Show user email in header if cloud sink is present. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More adjustments to get dynamic height change working and updated domain handling. Created 4 years, 10 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 #arrow-drop-container { 5 #arrow-drop-container {
6 flex-grow: 1; 6 flex-grow: 1;
7 } 7 }
8 8
9 #arrow-drop-icon::shadow #icon { 9 #arrow-drop-icon::shadow #icon {
10 height: 20px; 10 height: 20px;
(...skipping 17 matching lines...) Expand all
28 height: 15px; 28 height: 15px;
29 width: 15px; 29 width: 15px;
30 } 30 }
31 31
32 #close-button-container { 32 #close-button-container {
33 -webkit-margin-start: auto; 33 -webkit-margin-start: auto;
34 -webkit-padding-end: 16px; 34 -webkit-padding-end: 16px;
35 -webkit-padding-start: 24px; 35 -webkit-padding-start: 24px;
36 } 36 }
37 37
38 #user-email-container {
apacible 2016/02/11 17:09:14 nit: alphabetize by selectors
amp 2016/02/11 21:21:24 Done.
39 -webkit-padding-start: 12px;
40 font-size: 0.917em;
41 padding-bottom: 12px;
42 }
43
38 #header-and-arrow-container { 44 #header-and-arrow-container {
39 display: flex; 45 display: flex;
40 } 46 }
41 47
42 #header-text { 48 #header-text {
43 -webkit-padding-end: 4px; 49 -webkit-padding-end: 4px;
44 color: white; 50 color: white;
45 font-size: 1.175em; 51 font-size: 1.175em;
46 margin: 0; 52 margin: 0;
47 } 53 }
(...skipping 20 matching lines...) Expand all
68 } 74 }
69 75
70 paper-toolbar.issue { 76 paper-toolbar.issue {
71 background-color: rgb(219, 68, 55); 77 background-color: rgb(219, 68, 55);
72 } 78 }
73 79
74 paper-toolbar.route-details, 80 paper-toolbar.route-details,
75 paper-toolbar.sink-list { 81 paper-toolbar.sink-list {
76 background-color: rgb(33, 150, 243); 82 background-color: rgb(33, 150, 243);
77 } 83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698