| 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 /* The shield that overlays the background. */ | 5 /* The shield that overlays the background. */ |
| 6 .overlay { | 6 .overlay { |
| 7 -webkit-box-align: center; | 7 -webkit-box-align: center; |
| 8 -webkit-box-orient: vertical; | 8 -webkit-box-orient: vertical; |
| 9 -webkit-box-pack: center; | 9 -webkit-box-pack: center; |
| 10 -webkit-transition: 200ms opacity; | 10 -webkit-transition: 200ms opacity; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 color: #333; | 36 color: #333; |
| 37 display: -webkit-box; | 37 display: -webkit-box; |
| 38 min-width: 400px; | 38 min-width: 400px; |
| 39 padding: 0; | 39 padding: 0; |
| 40 position: relative; | 40 position: relative; |
| 41 } | 41 } |
| 42 | 42 |
| 43 /* If the options page is loading don't do the transition. */ | 43 /* If the options page is loading don't do the transition. */ |
| 44 .loading .overlay, | 44 .loading .overlay, |
| 45 .loading .overlay .page { | 45 .loading .overlay .page { |
| 46 -webkit-transition-duration: 0 !important; | 46 -webkit-transition-duration: 0ms !important; |
| 47 } | 47 } |
| 48 | 48 |
| 49 /* keyframes used to pulse the overlay */ | 49 /* keyframes used to pulse the overlay */ |
| 50 @-webkit-keyframes pulse { | 50 @-webkit-keyframes pulse { |
| 51 0% { | 51 0% { |
| 52 -webkit-transform: scale(1); | 52 -webkit-transform: scale(1); |
| 53 } | 53 } |
| 54 40% { | 54 40% { |
| 55 -webkit-transform: scale(1.02); | 55 -webkit-transform: scale(1.02); |
| 56 } | 56 } |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 .overlay .page .content-area::-webkit-scrollbar-thumb { | 154 .overlay .page .content-area::-webkit-scrollbar-thumb { |
| 155 background-color: rgba(0, 0, 0, 0.2); | 155 background-color: rgba(0, 0, 0, 0.2); |
| 156 border: 2px solid white; | 156 border: 2px solid white; |
| 157 border-radius: 8px; | 157 border-radius: 8px; |
| 158 } | 158 } |
| 159 | 159 |
| 160 .overlay .page .content-area::-webkit-scrollbar-thumb:hover { | 160 .overlay .page .content-area::-webkit-scrollbar-thumb:hover { |
| 161 background-color: rgba(0, 0, 0, 0.5); | 161 background-color: rgba(0, 0, 0, 0.5); |
| 162 } | 162 } |
| 163 </if> | 163 </if> |
| OLD | NEW |