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 20 matching lines...) Expand all Loading... |
31 flex: 1 1; | 31 flex: 1 1; |
32 overflow: auto; | 32 overflow: auto; |
33 padding-left: 0; | 33 padding-left: 0; |
34 } | 34 } |
35 | 35 |
36 #elements-crumbs { | 36 #elements-crumbs { |
37 flex: 0 0 19px; | 37 flex: 0 0 19px; |
38 background-color: rgb(236, 236, 236); | 38 background-color: rgb(236, 236, 236); |
39 border-top: 1px solid #ccc; | 39 border-top: 1px solid #ccc; |
40 overflow: hidden; | 40 overflow: hidden; |
| 41 height: 19px; |
| 42 width: 100%; |
41 } | 43 } |
42 | 44 |
43 #elements-content > ol { | 45 #elements-content > ol { |
44 display: inline-block; | 46 display: inline-block; |
45 min-height: 100%; | 47 min-height: 100%; |
46 } | 48 } |
47 | 49 |
48 #elements-content .editing { | 50 #elements-content .editing { |
49 margin-left: 8px; | 51 margin-left: 8px; |
50 } | 52 } |
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
685 | 687 |
686 .styles-clipboard-only { | 688 .styles-clipboard-only { |
687 display: inline-block; | 689 display: inline-block; |
688 width: 0; | 690 width: 0; |
689 opacity: 0; | 691 opacity: 0; |
690 } | 692 } |
691 | 693 |
692 li.child-editing .styles-clipboard-only { | 694 li.child-editing .styles-clipboard-only { |
693 display: none; | 695 display: none; |
694 } | 696 } |
OLD | NEW |