OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 body { | 5 body { |
6 margin: 20px; | 6 margin: 20px; |
7 } | 7 } |
8 | 8 |
9 h1 { | 9 h1 { |
10 -webkit-padding-start: 75px; | |
11 /* TODO(stuartmorgan): Get real art for this image */ | |
12 background-image: -webkit-image-set( | |
13 url('../../app/theme/default_100_percent/sadtab.png') 1x, | |
14 url('../../app/theme/default_200_percent/sadtab.png') 2x); | |
15 background-position: left; | |
16 background-repeat: no-repeat; | |
17 font-size: 156%; | 10 font-size: 156%; |
18 font-weight: bold; | 11 font-weight: bold; |
19 margin: 0; | 12 margin: 0; |
20 padding-bottom: 20px; | 13 padding-bottom: 20px; |
21 padding-top: 20px; | 14 padding-top: 20px; |
22 } | 15 } |
23 | 16 |
24 html[dir=rtl] h1 { | 17 html[dir=rtl] h1 { |
25 background-position: right; | 18 background-position: right; |
26 } | 19 } |
27 | 20 |
28 #countBanner { | 21 #log-banner { |
29 background-color: rgb(235, 239, 250); | 22 background-color: rgb(235, 239, 250); |
30 border: 1px solid #bbb; | 23 border: 1px solid #bbb; |
31 border-radius: 2px; | 24 border-radius: 2px; |
32 font-size: 100%; | 25 font-size: 100%; |
33 padding: 4px; | 26 padding: 4px; |
34 } | 27 } |
35 | 28 |
36 #crashList h3 { | 29 #log-list h3 { |
37 font-size: 100%; | 30 font-size: 100%; |
38 } | 31 } |
39 | 32 |
40 #crashList > div > * { | 33 #log-list > div > * { |
41 margin: 0.75em 0; | 34 margin: 0.75em 0; |
42 } | 35 } |
43 | 36 |
44 #crashList a:visited { | 37 #log-list a:visited { |
45 color: #666; | 38 color: #666; |
46 } | 39 } |
47 | 40 |
48 #crashList > div:not(:last-child) { | 41 #log-list > div:not(:last-child) { |
49 border-bottom: 1px solid #bbb; | 42 border-bottom: 1px solid #bbb; |
50 } | 43 } |
51 | 44 |
52 #disabledMode h2 { | 45 #disabled-mode h2 { |
53 color: rgb(141, 51, 42); | 46 color: rgb(141, 51, 42); |
54 font-size: 125%; | 47 font-size: 125%; |
55 } | 48 } |
OLD | NEW |