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

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

Issue 1027253004: Add Media Router route-details. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 button {
6 border: 1px solid rgb(193, 193, 195);
7 color: rgb(44, 44, 44);
8 cursor: pointer;
9 font-size: 0.875em;
10 font-weight: bold;
11 height: 32px;
12 overflow: hidden;
13 text-align: center;
14 width: 100%;
15 }
16
17 .button-secondary { 5 .button-secondary {
18 background: linear-gradient(to top, rgb(254, 254, 254), rgb(222, 222, 222)); 6 background: linear-gradient(to top, rgb(254, 254, 254), rgb(222, 222, 222));
19 } 7 }
20 8
21 .button-action { 9 .button-action {
22 background: linear-gradient(to top, rgb(89, 158, 244), rgb(75, 134, 241)); 10 background: linear-gradient(to top, rgb(89, 158, 244), rgb(75, 134, 241));
23 border: 1px solid rgb(55, 113, 206); 11 border: 1px solid rgb(55, 113, 206);
24 color: white; 12 color: white;
25 } 13 }
26 14
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 55
68 :host-context(html[dir='ltr']) .sad-face { 56 :host-context(html[dir='ltr']) .sad-face {
69 float: left; 57 float: left;
70 left: 4px; 58 left: 4px;
71 } 59 }
72 60
73 :host-context(html[dir='rtl']) .sad-face { 61 :host-context(html[dir='rtl']) .sad-face {
74 float: right; 62 float: right;
75 right: 4px; 63 right: 4px;
76 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698