| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 html { | 5 html { |
| 6 overflow-x: hidden; | 6 overflow-x: hidden; |
| 7 } | 7 } |
| 8 | 8 |
| 9 body { | 9 body { |
| 10 font-family: Helvetica, Arial, sans-serif; | 10 font-family: Helvetica, Arial, sans-serif; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 .app:hover { | 41 .app:hover { |
| 42 background-color: rgb(250,250,250); | 42 background-color: rgb(250,250,250); |
| 43 cursor:pointer; | 43 cursor:pointer; |
| 44 outline: 1px dotted rgb(100,100,200); | 44 outline: 1px dotted rgb(100,100,200); |
| 45 } | 45 } |
| 46 | 46 |
| 47 .app_selected,.app_selected:hover { | 47 .app_selected,.app_selected:hover { |
| 48 background-color: rgb(230,230,230); | 48 background-color: rgb(230,230,230); |
| 49 } | 49 } |
| 50 |
| 51 #appstore_link { |
| 52 display: none; |
| 53 } |
| OLD | NEW |