OLD | NEW |
---|---|
(Empty) | |
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 | |
3 * found in the LICENSE file. */ | |
4 | |
5 button { | |
6 -webkit-appearance: none; | |
7 border: 1px solid rgb(193, 193, 195); | |
8 color: rgb(44, 44, 44); | |
9 cursor: pointer; | |
10 font-size: 0.875em; | |
11 font-weight: bold; | |
12 height: 32px; | |
13 overflow: hidden; | |
14 text-align: center; | |
15 width: 100%; | |
16 } | |
17 | |
18 .button-secondary { | |
19 background: linear-gradient(to top, rgb(254, 254, 254), rgb(222, 222, 222)); | |
20 } | |
21 | |
22 .button-action { | |
23 background: linear-gradient(to top, rgb(89, 158, 244), rgb(75, 134, 241)); | |
24 border: 1px solid rgb(55, 113, 206); | |
25 color: white; | |
26 } | |
27 | |
28 .issue-action { | |
29 color: black; | |
30 cursor: pointer; | |
31 text-decoration: underline; | |
32 } | |
33 | |
34 .blocking-issue-header { | |
35 overflow: hidden; | |
36 } | |
37 | |
38 .blocking-issue-message { | |
39 -webkit-padding-start: 8px; | |
40 color: rgb(125, 125, 125); | |
41 line-height: 1.125em; | |
42 vertical-align: middle; | |
43 } | |
44 | |
45 .blocking-issue-title { | |
46 -webkit-padding-start: 8px; | |
47 display: block; | |
James Hawkins
2015/04/06 23:09:22
This needs to be block as well?
apacible
2015/04/06 23:14:46
Removed.
| |
48 font-weight: bold; | |
49 line-height: 1.125em; | |
50 vertical-align: top; | |
51 } | |
52 | |
53 .non-blocking-issue { | |
54 -webkit-padding-start: 12px; | |
55 background-color: rgb(249, 236, 191); | |
56 display: block; | |
James Hawkins
2015/04/06 23:09:22
This needs to be block as well?
apacible
2015/04/06 23:14:46
Removed.
| |
57 line-height: 1.25em; | |
58 padding-bottom: 6px; | |
59 padding-top: 6px; | |
60 } | |
61 | |
62 .sad-face { | |
63 background-image: -webkit-image-set( | |
64 url(../icon/sad-face.png) 1x, | |
65 url(../icon/sad-face2x.png) 2x); | |
66 background-repeat: no-repeat; | |
67 height: 32px; | |
68 width: 32px; | |
69 } | |
70 | |
71 :host-context(html[dir='ltr']) .sad-face { | |
72 float: left; | |
73 left: 4px; | |
74 } | |
75 | |
76 :host-context(html[dir='rtl']) .sad-face { | |
77 float: right; | |
78 right: 4px; | |
79 } | |
OLD | NEW |