OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 | 5 |
6 body { | 6 body { |
7 -webkit-user-select: text; | 7 -webkit-user-select: text; |
8 } | 8 } |
9 | 9 |
10 #about-container { | 10 #about-container { |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 background-repeat: no-repeat; | 55 background-repeat: no-repeat; |
56 display: inline-block; | 56 display: inline-block; |
57 height: 17px; | 57 height: 17px; |
58 margin-right: 4px; | 58 margin-right: 4px; |
59 vertical-align: middle; | 59 vertical-align: middle; |
60 width: 17px; | 60 width: 17px; |
61 } | 61 } |
62 | 62 |
63 #update-status-icon.available { | 63 #update-status-icon.available { |
64 background-image: url('chrome://theme/IDR_UPDATE_AVAILABLE'); | 64 background-image: url('chrome://theme/IDR_UPDATE_AVAILABLE'); |
| 65 background-size: 17px; |
65 } | 66 } |
66 | 67 |
67 #update-status-icon.up-to-date { | 68 #update-status-icon.up-to-date { |
68 background-image: url('chrome://theme/IDR_UPDATE_UPTODATE'); | 69 background-image: url('chrome://theme/IDR_UPDATE_UPTODATE'); |
| 70 background-size: 17px; |
69 } | 71 } |
70 | 72 |
71 #update-status-icon.working { | 73 #update-status-icon.working { |
72 background-image: url('chrome://resources/images/throbber.svg'); | 74 background-image: url('chrome://resources/images/throbber.svg'); |
73 } | 75 } |
74 | 76 |
75 #update-status-icon.failed { | 77 #update-status-icon.failed { |
76 background-image: url('chrome://theme/IDR_UPDATE_FAIL'); | 78 background-image: url('chrome://theme/IDR_UPDATE_FAIL'); |
| 79 background-size: 17px; |
77 } | 80 } |
78 | 81 |
79 #more-info-expander { | 82 #more-info-expander { |
80 -webkit-padding-start: 0; | 83 -webkit-padding-start: 0; |
81 } | 84 } |
82 | 85 |
83 #more-info-container.visible { | 86 #more-info-container.visible { |
84 margin-bottom: 1.5em; | 87 margin-bottom: 1.5em; |
85 } | 88 } |
86 | 89 |
87 #more-info-container { | 90 #more-info-container { |
88 -webkit-transition: all 500ms linear; | 91 -webkit-transition: all 500ms linear; |
89 height: 0; | 92 height: 0; |
90 margin-bottom: 0; | 93 margin-bottom: 0; |
91 overflow: hidden; | 94 overflow: hidden; |
92 } | 95 } |
93 | 96 |
94 #last-updated-container.empty { | 97 #last-updated-container.empty { |
95 visibility: hidden; | 98 visibility: hidden; |
96 } | 99 } |
OLD | NEW |