| 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 <include src="../search_header.css"> | 5 <include src="../search_header.css"> |
| 6 | 6 |
| 7 #downloads-summary-text { | 7 #downloads-summary-text { |
| 8 font-weight: bold; | 8 font-weight: bold; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 position: absolute; | 59 position: absolute; |
| 60 top: 2px; | 60 top: 2px; |
| 61 width: 32px; | 61 width: 32px; |
| 62 } | 62 } |
| 63 | 63 |
| 64 html[dir=rtl] .icon { | 64 html[dir=rtl] .icon { |
| 65 left: auto; | 65 left: auto; |
| 66 right: 9px; | 66 right: 9px; |
| 67 } | 67 } |
| 68 | 68 |
| 69 .download.otr > .safe, | 69 .download.otr > :-webkit-any(.safe, .dangerous) { |
| 70 .download.otr > .show-dangerous { | |
| 71 -webkit-transition: opacity 150ms; | 70 -webkit-transition: opacity 150ms; |
| 72 background: url(../../../../ui/webui/resources/images/otr_icon_standalone.png) | 71 background: url(../../../../ui/webui/resources/images/otr_icon_standalone.png) |
| 73 no-repeat right bottom; | 72 no-repeat right bottom; |
| 74 opacity: .66; | 73 opacity: .66; |
| 75 } | 74 } |
| 76 | 75 |
| 77 html[dir=rtl] .download.otr > .safe, | 76 html[dir=rtl] .download.otr > :-webkit-any(.safe, .dangerous) { |
| 78 html[dir=rtl] .download.otr > .show-dangerous { | |
| 79 background-position: left bottom; | 77 background-position: left bottom; |
| 80 } | 78 } |
| 81 | 79 |
| 82 .download.otr > .safe:hover, | 80 .download.otr > :-webkit-any(.safe, .dangerous):hover { |
| 83 .download.otr > .show-dangerous:hover { | |
| 84 opacity: 1; | 81 opacity: 1; |
| 85 } | 82 } |
| 86 | 83 |
| 87 .description.malware { | 84 .description.malware { |
| 88 color: rgb(196, 42, 23); | 85 color: rgb(196, 42, 23); |
| 89 } | 86 } |
| 90 | 87 |
| 91 .progress { | 88 .progress { |
| 92 height: 48px; | 89 height: 48px; |
| 93 left: 0; | 90 left: 0; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 } | 153 } |
| 157 | 154 |
| 158 .safe .controls a { | 155 .safe .controls a { |
| 159 display: inline; | 156 display: inline; |
| 160 } | 157 } |
| 161 | 158 |
| 162 #downloads-pagination { | 159 #downloads-pagination { |
| 163 -webkit-margin-start: 18px; | 160 -webkit-margin-start: 18px; |
| 164 padding-top: 24px; | 161 padding-top: 24px; |
| 165 } | 162 } |
| OLD | NEW |