OLD | NEW |
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 } |
OLD | NEW |