| 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 | 4 |
| 5 #app-launch-splash { | 5 #app-launch-splash { |
| 6 -webkit-box-align: center; | 6 -webkit-box-align: center; |
| 7 -webkit-box-pack: center; | 7 -webkit-box-pack: center; |
| 8 background: white; | 8 background: white; |
| 9 display: -webkit-box; | 9 display: -webkit-box; |
| 10 } | 10 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 font-size: 18px; | 33 font-size: 18px; |
| 34 padding-top: 50px; | 34 padding-top: 50px; |
| 35 } | 35 } |
| 36 | 36 |
| 37 #splash-spinner { | 37 #splash-spinner { |
| 38 height: 32px; | 38 height: 32px; |
| 39 width: 32px; | 39 width: 32px; |
| 40 } | 40 } |
| 41 | 41 |
| 42 #splash-config-network-container { | 42 #splash-config-network-container { |
| 43 -webkit-transition: 1s opacity; | |
| 44 height : 30px; | 43 height : 30px; |
| 45 opacity: 1; | 44 opacity: 1; |
| 46 padding-bottom: 20px; | 45 padding-bottom: 20px; |
| 46 transition: 1s opacity; |
| 47 } | 47 } |
| 48 | 48 |
| 49 #splash-config-network-container.faded { | 49 #splash-config-network-container.faded { |
| 50 opacity: 0; | 50 opacity: 0; |
| 51 } | 51 } |
| 52 | 52 |
| 53 #splash-config-network { | 53 #splash-config-network { |
| 54 font-size: 10px; | 54 font-size: 10px; |
| 55 font-weight: bold; | 55 font-weight: bold; |
| 56 margin: 0; | 56 margin: 0; |
| 57 padding: 0; | 57 padding: 0; |
| 58 text-decoration: none; | 58 text-decoration: none; |
| 59 } | 59 } |
| 60 | 60 |
| 61 #splash-config-network:hover { | 61 #splash-config-network:hover { |
| 62 color: rgb(202, 67, 100) | 62 color: rgb(202, 67, 100) |
| 63 } | 63 } |
| 64 | 64 |
| 65 #splash-shortcut-info { | 65 #splash-shortcut-info { |
| 66 bottom: 50px; | 66 bottom: 50px; |
| 67 color: gray; | 67 color: gray; |
| 68 left: 0; | 68 left: 0; |
| 69 position: absolute; | 69 position: absolute; |
| 70 right: 0; | 70 right: 0; |
| 71 text-align: center; | 71 text-align: center; |
| 72 } | 72 } |
| OLD | NEW |