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

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
« no previous file with comments | « no previous file | chrome/browser/resources/media_router/elements/issue_banner/issue_banner.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 /* TODO(apacible): Update to use Chromium paper color. */
7 } 7 background-color: rgb(82, 147, 242);
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; 8 color: white;
13 } 9 }
14 10
15 .issue-action {
16 color: black;
17 cursor: pointer;
18 text-decoration: underline;
19 }
20
21 .blocking-issue-header { 11 .blocking-issue-header {
22 display: flex; 12 display: flex;
23 overflow: hidden; 13 overflow: hidden;
24 padding-top: 10px; 14 padding-top: 10px;
25 } 15 }
26 16
27 .blocking-issue-message { 17 .blocking-issue-message {
28 -webkit-padding-start: 8px; 18 -webkit-padding-start: 8px;
29 color: rgb(125, 125, 125); 19 color: rgb(125, 125, 125);
30 line-height: 1.125em; 20 line-height: 1.125em;
31 vertical-align: middle; 21 vertical-align: middle;
32 } 22 }
33 23
34 .blocking-issue-title { 24 .blocking-issue-title {
35 -webkit-padding-start: 8px; 25 -webkit-padding-start: 8px;
36 font-weight: bold; 26 font-weight: bold;
37 line-height: 1.125em; 27 line-height: 1.125em;
38 vertical-align: top; 28 vertical-align: top;
39 } 29 }
40 30
31 .issue-action {
32 color: black;
33 cursor: pointer;
34 text-decoration: underline;
35 }
36
37 #issue-buttons {
38 display: flex;
39 }
40
41 .non-blocking-issue { 41 .non-blocking-issue {
42 -webkit-padding-start: 12px; 42 -webkit-padding-start: 12px;
43 background-color: rgb(249, 236, 191); 43 background-color: rgb(249, 236, 191);
44 line-height: 1.25em; 44 line-height: 1.25em;
45 padding-bottom: 6px; 45 padding-bottom: 6px;
46 padding-top: 6px; 46 padding-top: 6px;
47 } 47 }
48 48
49 .sad-face { 49 .sad-face {
50 -webkit-margin-start: 20px; 50 -webkit-margin-start: 20px;
51 background-image: -webkit-image-set( 51 background-image: -webkit-image-set(
52 url(../icon/sad-face.png) 1x, 52 url(../icon/sad-face.png) 1x,
53 url(../icon/sad-face2x.png) 2x); 53 url(../icon/sad-face2x.png) 2x);
54 background-repeat: no-repeat; 54 background-repeat: no-repeat;
55 height: 32px; 55 height: 32px;
56 width: 32px; 56 width: 32px;
57 } 57 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/media_router/elements/issue_banner/issue_banner.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698