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