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

Side by Side Diff: chrome/browser/resources/media_router/elements/issue_banner/issue_banner.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 .button-secondary { 5 .action {
6 background: linear-gradient(to top, rgb(254, 254, 254), rgb(222, 222, 222)); 6 background-color: rgb(82, 147, 242);
7 }
8
9 .button-action {
10 background: linear-gradient(to top, rgb(89, 158, 244), rgb(75, 134, 241));
11 border: 1px solid rgb(55, 113, 206);
12 color: white; 7 color: white;
13 } 8 }
14 9
15 .issue-action {
16 color: black;
17 cursor: pointer;
18 text-decoration: underline;
19 }
20
21 .blocking-issue-header { 10 .blocking-issue-header {
22 display: flex; 11 display: flex;
23 overflow: hidden; 12 overflow: hidden;
24 padding-top: 10px; 13 padding-top: 10px;
25 } 14 }
26 15
27 .blocking-issue-message { 16 .blocking-issue-message {
28 -webkit-padding-start: 8px; 17 -webkit-padding-start: 8px;
29 color: rgb(125, 125, 125); 18 color: rgb(125, 125, 125);
30 line-height: 1.125em; 19 line-height: 1.125em;
31 vertical-align: middle; 20 vertical-align: middle;
32 } 21 }
33 22
34 .blocking-issue-title { 23 .blocking-issue-title {
35 -webkit-padding-start: 8px; 24 -webkit-padding-start: 8px;
36 font-weight: bold; 25 font-weight: bold;
37 line-height: 1.125em; 26 line-height: 1.125em;
38 vertical-align: top; 27 vertical-align: top;
39 } 28 }
40 29
30 .issue-action {
31 color: black;
32 cursor: pointer;
33 text-decoration: underline;
34 }
35
36 #issue-buttons {
37 display: flex;
38 }
39
41 .non-blocking-issue { 40 .non-blocking-issue {
42 -webkit-padding-start: 12px; 41 -webkit-padding-start: 12px;
43 background-color: rgb(249, 236, 191); 42 background-color: rgb(249, 236, 191);
44 line-height: 1.25em; 43 line-height: 1.25em;
45 padding-bottom: 6px; 44 padding-bottom: 6px;
46 padding-top: 6px; 45 padding-top: 6px;
47 } 46 }
48 47
49 .sad-face { 48 .sad-face {
50 -webkit-margin-start: 20px; 49 -webkit-margin-start: 20px;
51 background-image: -webkit-image-set( 50 background-image: -webkit-image-set(
52 url(../icon/sad-face.png) 1x, 51 url(../icon/sad-face.png) 1x,
53 url(../icon/sad-face2x.png) 2x); 52 url(../icon/sad-face2x.png) 2x);
54 background-repeat: no-repeat; 53 background-repeat: no-repeat;
55 height: 32px; 54 height: 32px;
56 width: 32px; 55 width: 32px;
57 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698