| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 | 5 |
| 6 /* Elements */ | 6 /* Elements */ |
| 7 a { | 7 a { |
| 8 color: rgb(0, 102, 204); | 8 color: rgb(0, 102, 204); |
| 9 text-decoration: none; | 9 text-decoration: none; |
| 10 } | 10 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 -webkit-user-select: none; | 33 -webkit-user-select: none; |
| 34 } | 34 } |
| 35 | 35 |
| 36 button:hover { | 36 button:hover { |
| 37 background: #ebebeb -webkit-linear-gradient(#fefefe, #f8f8f8 40%, #e9e9e9); | 37 background: #ebebeb -webkit-linear-gradient(#fefefe, #f8f8f8 40%, #e9e9e9); |
| 38 border-color: #999; | 38 border-color: #999; |
| 39 color: #222; | 39 color: #222; |
| 40 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); | 40 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); |
| 41 } | 41 } |
| 42 | 42 |
| 43 button:active { | 43 button:active, .toggle-button-active, .toggle-button-active:hover { |
| 44 background: #ebebeb -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc); | 44 background: #ebebeb -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc); |
| 45 color: #333; | 45 color: #333; |
| 46 -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2); | 46 -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2); |
| 47 } | 47 } |
| 48 | 48 |
| 49 button[disabled], .button[disabled]:hover { | 49 button[disabled], .button[disabled]:hover { |
| 50 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); | 50 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); |
| 51 border-color: #aaa; | 51 border-color: #aaa; |
| 52 color: #888; | 52 color: #888; |
| 53 -webkit-box-shadow: none; | 53 -webkit-box-shadow: none; |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 margin: 100px auto 0 auto; | 224 margin: 100px auto 0 auto; |
| 225 padding: 10px; | 225 padding: 10px; |
| 226 width: 640px; | 226 width: 640px; |
| 227 } | 227 } |
| 228 | 228 |
| 229 #session-mode { | 229 #session-mode { |
| 230 width: 100%; | 230 width: 100%; |
| 231 -webkit-user-select: none; | 231 -webkit-user-select: none; |
| 232 } | 232 } |
| 233 | 233 |
| 234 #session-status-msg { | 234 #toggle-scaling { |
| 235 /* | 235 margin: 1px 0 0 0; |
| 236 clear: both; forces the session-controls div to size appropriately for | 236 padding: 1px; |
| 237 session-buttons. | 237 min-width: 0; |
| 238 */ | 238 line-height: 0; |
| 239 clear: both; | |
| 240 font-family: monospace; | |
| 241 font-size: small; | |
| 242 margin: 5px; | |
| 243 } | 239 } |
| 244 | |
| 245 #server-response { | |
| 246 font-weight: bolder; | |
| 247 } | |
| OLD | NEW |