OLD | NEW |
1 /* Copyright 2013 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 body { | 4 body { |
5 background-attachment: fixed !important; | 5 background-attachment: fixed !important; |
6 background-color: white; | 6 background-color: white; |
7 cursor: default; | 7 cursor: default; |
8 font-family: arial, sans-serif; | 8 font-family: arial, sans-serif; |
9 font-size: small; | 9 font-size: small; |
10 margin: 0; | 10 margin: 0; |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 } | 101 } |
102 | 102 |
103 @-webkit-keyframes blink { | 103 @-webkit-keyframes blink { |
104 0% { | 104 0% { |
105 opacity: 1; | 105 opacity: 1; |
106 } | 106 } |
107 61.55% { | 107 61.55% { |
108 opacity: 0; | 108 opacity: 0; |
109 } | 109 } |
110 } | 110 } |
| 111 |
| 112 body.fakebox-drag-focused #cursor { |
| 113 visibility: inherit; |
| 114 } |
| 115 |
111 body.fakebox-focused #cursor { | 116 body.fakebox-focused #cursor { |
112 -webkit-animation: blink 1.3s step-end infinite; | 117 -webkit-animation: blink 1.3s step-end infinite; |
113 visibility: inherit; | 118 visibility: inherit; |
114 } | 119 } |
115 | 120 |
116 #most-visited { | 121 #most-visited { |
117 -webkit-user-select: none; | 122 -webkit-user-select: none; |
118 margin-top: 51px; | 123 margin-top: 51px; |
119 text-align: -webkit-center; | 124 text-align: -webkit-center; |
120 } | 125 } |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 opacity: 0.9; | 349 opacity: 0.9; |
345 padding: 3px; | 350 padding: 3px; |
346 position: fixed; | 351 position: fixed; |
347 right: 8px; | 352 right: 8px; |
348 } | 353 } |
349 | 354 |
350 body.rtl #attribution,body.rtl #recent-tabs { | 355 body.rtl #attribution,body.rtl #recent-tabs { |
351 left: 8px; | 356 left: 8px; |
352 right: auto; | 357 right: auto; |
353 } | 358 } |
OLD | NEW |