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

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

Issue 1136353002: Convert Media Router WebUI <button>s to <paper-button>s. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 #back-to-devices { 5 #back-to-devices {
6 -webkit-padding-start: 10px; 6 -webkit-padding-start: 10px;
7 color: rgb(20, 86, 218); 7 color: rgb(20, 86, 218);
8 font-weight: bold; 8 font-weight: bold;
9 line-height: 2em; 9 line-height: 2em;
10 } 10 }
11 11
12 #back-to-devices:hover { 12 #back-to-devices:hover {
13 cursor: pointer; 13 cursor: pointer;
14 text-decoration: underline; 14 text-decoration: underline;
15 } 15 }
16 16
17 button {
18 background: linear-gradient(to top, rgb(254, 254, 254), rgb(222, 222, 222));
19 }
20
21 hr { 17 hr {
22 margin: 0; 18 margin: 0;
23 } 19 }
24 20
25 .route { 21 .route {
26 -webkit-padding-start: 10px; 22 -webkit-padding-start: 10px;
27 line-height: 1.125em; 23 line-height: 1.125em;
28 } 24 }
29 25
30 .route-status { 26 .route-status {
31 color: rgb(125, 125, 125); 27 color: rgb(125, 125, 125);
32 margin: 8px 0; 28 margin: 8px 0;
33 } 29 }
34 30
35 .route-title { 31 .route-title {
36 font-weight: bold; 32 font-weight: bold;
37 margin: 8px 0; 33 margin: 8px 0;
38 overflow: hidden; 34 overflow: hidden;
39 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698