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; | |
mark a. foltz
2015/04/06 23:23:59
none is default. remove?
apacible
2015/04/06 23:40:00
Done.
| |
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 font-weight: bold; | |
48 line-height: 1.125em; | |
49 vertical-align: top; | |
50 } | |
51 | |
52 .non-blocking-issue { | |
53 -webkit-padding-start: 12px; | |
54 background-color: rgb(249, 236, 191); | |
55 line-height: 1.25em; | |
56 padding-bottom: 6px; | |
57 padding-top: 6px; | |
58 } | |
59 | |
60 .sad-face { | |
61 background-image: -webkit-image-set( | |
62 url(../icon/sad-face.png) 1x, | |
63 url(../icon/sad-face2x.png) 2x); | |
64 background-repeat: no-repeat; | |
65 height: 32px; | |
66 width: 32px; | |
67 } | |
68 | |
69 :host-context(html[dir='ltr']) .sad-face { | |
70 float: left; | |
71 left: 4px; | |
72 } | |
73 | |
74 :host-context(html[dir='rtl']) .sad-face { | |
75 float: right; | |
76 right: 4px; | |
77 } | |
OLD | NEW |