| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 white-space: nowrap; | 647 white-space: nowrap; |
| 648 } | 648 } |
| 649 | 649 |
| 650 .timeline-landing-page { | 650 .timeline-landing-page { |
| 651 position: absolute; | 651 position: absolute; |
| 652 background-color: white; | 652 background-color: white; |
| 653 justify-content: center; | 653 justify-content: center; |
| 654 align-items: center; | 654 align-items: center; |
| 655 overflow: auto; | 655 overflow: auto; |
| 656 font-size: 13px; | 656 font-size: 13px; |
| 657 line-height: 15px; |
| 657 color: #777; | 658 color: #777; |
| 658 } | 659 } |
| 659 | 660 |
| 660 .timeline-landing-page > div { | 661 .timeline-landing-page > div { |
| 661 width: 430px; | 662 max-width: 430px; |
| 663 margin: 10px; |
| 662 } | 664 } |
| 663 | 665 |
| 664 .timeline-landing-page > div > p { | 666 .timeline-landing-page > div > p { |
| 665 flex: none; | 667 flex: none; |
| 666 } | 668 } |
| 667 | 669 |
| 668 .timeline-landing-warning { | 670 .timeline-landing-warning { |
| 669 border: 1px solid #fdd835; | |
| 670 background-color: #fffde7; | 671 background-color: #fffde7; |
| 671 padding: 5px; | 672 padding: 10px 14px; |
| 673 box-shadow: 1px 1px 3px rgba(0,0,0,0.2); |
| 672 } | 674 } |
| 673 | 675 |
| 674 .timeline-landing-warning span[is=ui-icon] { | 676 .timeline-landing-warning span[is=ui-icon] { |
| 675 position: relative; | 677 margin: -8px; |
| 676 top:7px; | |
| 677 } | 678 } |
| OLD | NEW |