 Chromium Code Reviews
 Chromium Code Reviews Issue 1248613003:
  Issue 501916 : Add data type counts to profile deletion flow  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 1248613003:
  Issue 501916 : Add data type counts to profile deletion flow  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| OLD | NEW | 
|---|---|
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 * This is the stylesheet used by user pods row of account picker UI. | 5 * This is the stylesheet used by user pods row of account picker UI. | 
| 6 */ | 6 */ | 
| 7 | 7 | 
| 8 podrow { | 8 podrow { | 
| 9 /* Temporarily disabled because animation interferes with updating screen's | 9 /* Temporarily disabled because animation interferes with updating screen's | 
| 10 size. */ | 10 size. */ | 
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 537 background-color: #f3f3f3; | 537 background-color: #f3f3f3; | 
| 538 } | 538 } | 
| 539 | 539 | 
| 540 .action-box-remove-user-warning { | 540 .action-box-remove-user-warning { | 
| 541 border-top: 1px solid lightgray; | 541 border-top: 1px solid lightgray; | 
| 542 font-size: 12px; | 542 font-size: 12px; | 
| 543 line-height: 18px; | 543 line-height: 18px; | 
| 544 padding: 20px; | 544 padding: 20px; | 
| 545 } | 545 } | 
| 546 | 546 | 
| 547 .action-box-remove-user-warning-text, | 547 .action-box-remove-user-warning-text-nostats, | 
| 548 .action-box-remove-user-warning-text-nonsync, | |
| 549 .action-box-remove-user-warning-table-nonsync, | |
| 550 .action-box-remove-user-warning-text-sync, | |
| 551 .action-box-remove-user-warning-text-sync2, | |
| 
msramek
2015/07/29 13:55:01
Use more informative name than "sync2".
 
lwchkg
2015/07/29 14:46:05
Okay. I'll try "sync-part1" and "sync-part2"
Anyw
 
msramek
2015/07/29 18:10:25
I would actually leave the first one, but name the
 
lwchkg
2015/07/30 17:07:19
Actually the divs are also used in the javascript
 | |
| 548 .action-box-remove-legacy-supervised-user-warning-text { | 552 .action-box-remove-legacy-supervised-user-warning-text { | 
| 549 padding-bottom: 20px; | 553 padding-bottom: 20px; | 
| 550 } | 554 } | 
| 551 | 555 | 
| 556 .total-count { | |
| 557 font-weight: bold; | |
| 558 } | |
| 559 | |
| 560 .action-box-remove-user-warning-table-nonsync { | |
| 561 border-spacing: 0; | |
| 562 width: 100%; | |
| 563 } | |
| 564 | |
| 565 .action-box-remove-user-warning-table td { | |
| 566 padding: 0; | |
| 567 } | |
| 568 | |
| 569 .action-box-remove-user-warning-table-numbers { | |
| 570 color: #b4b4b4; | |
| 571 text-align: end; | |
| 572 } | |
| 573 | |
| 552 .action-box-remove-user-warning .remove-warning-button { | 574 .action-box-remove-user-warning .remove-warning-button { | 
| 553 width: 100%; | 575 width: 100%; | 
| 554 } | 576 } | 
| 555 | 577 | 
| 556 .user-type-bubble { | 578 .user-type-bubble { | 
| 557 background-color: white; | 579 background-color: white; | 
| 558 border: 1px solid lightgray; | 580 border: 1px solid lightgray; | 
| 559 border-radius: 2px; | 581 border-radius: 2px; | 
| 560 left: 5px; | 582 left: 5px; | 
| 561 opacity: 0; | 583 opacity: 0; | 
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 782 -webkit-animation: ellipsis-component2 1.5s infinite; | 804 -webkit-animation: ellipsis-component2 1.5s infinite; | 
| 783 } | 805 } | 
| 784 | 806 | 
| 785 @-webkit-keyframes ellipsis-component2 { | 807 @-webkit-keyframes ellipsis-component2 { | 
| 786 0% { opacity: 0; } | 808 0% { opacity: 0; } | 
| 787 25% { opacity: 0; } | 809 25% { opacity: 0; } | 
| 788 50% { opacity: 0; } | 810 50% { opacity: 0; } | 
| 789 75% { opacity: 1; } | 811 75% { opacity: 1; } | 
| 790 100% { opacity: 0; } | 812 100% { opacity: 0; } | 
| 791 } | 813 } | 
| OLD | NEW |