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 17 matching lines...) Expand all Loading... |
28 */ | 28 */ |
29 | 29 |
30 #elements-content { | 30 #elements-content { |
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: white; |
39 border-top: 1px solid #ccc; | 39 border-top: 1px solid #ccc; |
40 overflow: hidden; | 40 overflow: hidden; |
41 } | 41 } |
42 | 42 |
43 #elements-content > ol { | 43 #elements-content > ol { |
44 display: inline-block; | 44 display: inline-block; |
45 min-height: 100%; | 45 min-height: 100%; |
46 } | 46 } |
47 | 47 |
48 #elements-content .editing { | 48 #elements-content .editing { |
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
685 | 685 |
686 .styles-clipboard-only { | 686 .styles-clipboard-only { |
687 display: inline-block; | 687 display: inline-block; |
688 width: 0; | 688 width: 0; |
689 opacity: 0; | 689 opacity: 0; |
690 } | 690 } |
691 | 691 |
692 li.child-editing .styles-clipboard-only { | 692 li.child-editing .styles-clipboard-only { |
693 display: none; | 693 display: none; |
694 } | 694 } |
OLD | NEW |