| 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 html { | 5 html { |
| 6 /* It's necessary to put this here instead of in body in order to get the | 6 /* It's necessary to put this here instead of in body in order to get the |
| 7 background-size of 100% to work properly */ | 7 background-size of 100% to work properly */ |
| 8 height: 100%; | 8 height: 100%; |
| 9 overflow: hidden; | 9 overflow: hidden; |
| 10 } | 10 } |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 -webkit-transition: none !important; | 226 -webkit-transition: none !important; |
| 227 } | 227 } |
| 228 | 228 |
| 229 /* Login Status. **************************************************************/ | 229 /* Login Status. **************************************************************/ |
| 230 | 230 |
| 231 #login-container { | 231 #login-container { |
| 232 background: transparent none; | 232 background: transparent none; |
| 233 border: none; | 233 border: none; |
| 234 box-shadow: none; | 234 box-shadow: none; |
| 235 color: inherit; | 235 color: inherit; |
| 236 cursor: pointer; | |
| 237 font: inherit; | 236 font: inherit; |
| 238 /* Leave room for the scrollbar. */ | 237 /* Leave room for the scrollbar. */ |
| 239 margin-left: 13px; | 238 margin-left: 13px; |
| 240 margin-right: 13px; | 239 margin-right: 13px; |
| 241 margin-top: 5px; | 240 margin-top: 5px; |
| 242 padding: 0; | 241 padding: 0; |
| 243 position: fixed; | 242 position: fixed; |
| 244 right: 0; | 243 right: 0; |
| 245 text-align: right; | 244 text-align: right; |
| 246 top: 0; | 245 top: 0; |
| 247 z-index: 10; | 246 z-index: 10; |
| 248 } | 247 } |
| 249 | 248 |
| 249 #login-container:not(.signed-in) { |
| 250 cursor: pointer; |
| 251 } |
| 252 |
| 250 html[dir='rtl'] #login-container { | 253 html[dir='rtl'] #login-container { |
| 251 left: 0; | 254 left: 0; |
| 252 right: auto; | 255 right: auto; |
| 253 } | 256 } |
| 254 | 257 |
| 255 #login-container [is='action-link'] { | 258 #login-container [is='action-link'] { |
| 256 -webkit-margin-start: 0; | 259 -webkit-margin-start: 0; |
| 257 } | 260 } |
| 258 | 261 |
| 259 .login-status-icon { | 262 .login-status-icon { |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 padding: 0; | 443 padding: 0; |
| 441 } | 444 } |
| 442 | 445 |
| 443 .other-sessions-promo-message:only-child { | 446 .other-sessions-promo-message:only-child { |
| 444 display: block; | 447 display: block; |
| 445 } | 448 } |
| 446 | 449 |
| 447 .other-sessions-promo-message p { | 450 .other-sessions-promo-message p { |
| 448 margin: 0; | 451 margin: 0; |
| 449 } | 452 } |
| OLD | NEW |