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

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: Overhauled implementation to use observers and fire events as well as push down logic into native m… 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 28 matching lines...) Expand all
39 display: flex; 39 display: flex;
40 } 40 }
41 41
42 #header-text { 42 #header-text {
43 -webkit-padding-end: 4px; 43 -webkit-padding-end: 4px;
44 color: white; 44 color: white;
45 font-size: 1.175em; 45 font-size: 1.175em;
46 margin: 0; 46 margin: 0;
47 } 47 }
48 48
49 #user-email-container {
apacible 2016/02/13 08:13:02 nit: alphabetize by selectors.
amp 2016/02/16 22:19:12 Done. I thought this included the '#' in the alph
50 -webkit-padding-start: 12px;
51 font-size: 0.917em;
52 padding-bottom: 12px;
53 }
54
49 paper-icon-button { 55 paper-icon-button {
50 display: inline; 56 display: inline;
51 } 57 }
52 58
53 paper-toolbar { 59 paper-toolbar {
54 -webkit-padding-start: 8px; 60 -webkit-padding-start: 8px;
55 height: 52px; 61 height: 52px;
56 } 62 }
57 63
58 paper-toolbar::shadow .toolbar-tools { 64 paper-toolbar::shadow .toolbar-tools {
59 padding: 0; 65 padding: 0;
60 } 66 }
61 67
62 paper-toolbar.cast-mode-list { 68 paper-toolbar.cast-mode-list {
63 background-color: rgb(0, 150, 136); 69 background-color: rgb(0, 150, 136);
64 } 70 }
65 71
66 paper-toolbar.filter { 72 paper-toolbar.filter {
67 background-color: rgb(103, 58, 183); 73 background-color: rgb(103, 58, 183);
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