| 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 body, | 5 body, |
| 6 html { | 6 html { |
| 7 color: rgb(48, 57, 66); | 7 color: rgb(48, 57, 66); |
| 8 font-family: Ubuntu, Arial, sans-serif; | 8 font-family: Ubuntu, Arial, sans-serif; |
| 9 height: 100%; | 9 height: 100%; |
| 10 overflow: hidden; | 10 overflow: hidden; |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 -webkit-margin-end: 2.5em; | 324 -webkit-margin-end: 2.5em; |
| 325 padding-top: 7px; | 325 padding-top: 7px; |
| 326 } | 326 } |
| 327 | 327 |
| 328 .extension-list-item a { | 328 .extension-list-item a { |
| 329 -webkit-margin-end: 0.5em; | 329 -webkit-margin-end: 0.5em; |
| 330 -webkit-margin-start: 0; | 330 -webkit-margin-start: 0; |
| 331 display: inline-block; | 331 display: inline-block; |
| 332 } | 332 } |
| 333 | 333 |
| 334 .install-warnings { |
| 335 background: pink; |
| 336 border-radius: 3px; |
| 337 margin-top: 5px; |
| 338 padding: 2px 5px; |
| 339 } |
| 340 |
| 334 .install-warnings a { | 341 .install-warnings a { |
| 335 -webkit-margin-start: 0; | 342 -webkit-margin-start: 0; |
| 336 } | 343 } |
| 337 | 344 |
| 345 .install-warnings ul { |
| 346 margin: 0; |
| 347 } |
| 348 |
| 338 .extension-details-summary { | 349 .extension-details-summary { |
| 339 margin-bottom: 10px; | 350 margin-bottom: 10px; |
| 340 } | 351 } |
| 341 | 352 |
| 342 .extension-details-all div { | 353 .extension-details-all div { |
| 343 margin: 5px 0; | 354 margin: 5px 0; |
| 344 } | 355 } |
| 345 | 356 |
| 346 html[dir='rtl'] .delete-link { | 357 html[dir='rtl'] .delete-link { |
| 347 float: left; | 358 float: left; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 } | 431 } |
| 421 | 432 |
| 422 a { | 433 a { |
| 423 color: rgb(17, 85, 204); | 434 color: rgb(17, 85, 204); |
| 424 text-decoration: underline; | 435 text-decoration: underline; |
| 425 } | 436 } |
| 426 | 437 |
| 427 a:active { | 438 a:active { |
| 428 color: rgb(5, 37, 119); | 439 color: rgb(5, 37, 119); |
| 429 } | 440 } |
| OLD | NEW |