| 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 html { | 6 html { |
| 7 font-family: segoe ui, arial, helvetica, sans-serif; | 7 font-family: segoe ui, arial, helvetica, sans-serif; |
| 8 font-size: 14px; | 8 font-size: 14px; |
| 9 /* It's necessary to put this here instead of in body in order to get the | 9 /* It's necessary to put this here instead of in body in order to get the |
| 10 background-size of 100% to work properly */ | 10 background-size of 100% to work properly */ |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 } | 170 } |
| 171 | 171 |
| 172 /* Login Status. **************************************************************/ | 172 /* Login Status. **************************************************************/ |
| 173 | 173 |
| 174 #login-container { | 174 #login-container { |
| 175 background: transparent none; | 175 background: transparent none; |
| 176 border: none; | 176 border: none; |
| 177 cursor: pointer; | 177 cursor: pointer; |
| 178 font-size: 13px; | 178 font-size: 13px; |
| 179 /* Leave room for the scrollbar. */ | 179 /* Leave room for the scrollbar. */ |
| 180 margin-left: 13px; |
| 180 margin-right: 13px; | 181 margin-right: 13px; |
| 181 margin-top: 5px; | 182 margin-top: 5px; |
| 183 padding: 0; |
| 182 position: fixed; | 184 position: fixed; |
| 183 right: 0; | 185 right: 0; |
| 184 text-align: right; | 186 text-align: right; |
| 185 text-decoration: none; | 187 text-decoration: none; |
| 186 top: 0; | 188 top: 0; |
| 187 z-index: 100; | 189 z-index: 100; |
| 188 -webkit-box-shadow: none; | 190 -webkit-box-shadow: none; |
| 189 } | 191 } |
| 190 | 192 |
| 191 html[dir='rtl'] #login-container { | 193 html[dir='rtl'] #login-container { |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 padding: 0; | 270 padding: 0; |
| 269 position: absolute; | 271 position: absolute; |
| 270 margin: 0; | 272 margin: 0; |
| 271 max-width: 150px; | 273 max-width: 150px; |
| 272 min-width: 90px; | 274 min-width: 90px; |
| 273 outline: none; | 275 outline: none; |
| 274 top: 0; | 276 top: 0; |
| 275 z-index: 5; | 277 z-index: 5; |
| 276 -webkit-transition: width 150ms, right 150ms, background-color 150ms; | 278 -webkit-transition: width 150ms, right 150ms, background-color 150ms; |
| 277 } | 279 } |
| OLD | NEW |