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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #elements-content.elements-wrap { | 42 #elements-content.elements-wrap { |
43 overflow-x: hidden; | 43 overflow-x: hidden; |
44 } | 44 } |
45 | 45 |
46 .elements-topbar { | 46 .elements-topbar { |
47 border-bottom: 1px solid hsla(0, 0%, 0%, 0.1); | 47 border-bottom: 1px solid hsla(0, 0%, 0%, 0.1); |
48 flex-shrink: 0; | 48 flex-shrink: 0; |
49 } | 49 } |
50 | 50 |
51 #elements-crumbs { | 51 #elements-crumbs { |
52 flex: 0 0 26px; | 52 flex: 0 0 19px; |
53 background-color: white; | 53 background-color: white; |
54 border-top: 1px solid #ccc; | 54 border-top: 1px solid #ccc; |
55 overflow: hidden; | 55 overflow: hidden; |
| 56 height: 19px; |
56 width: 100%; | 57 width: 100%; |
57 } | 58 } |
58 | 59 |
| 60 .material #elements-crumbs { |
| 61 flex: auto; |
| 62 border: none; |
| 63 height: 26px; |
| 64 } |
| 65 |
59 .metrics { | 66 .metrics { |
60 padding: 8px; | 67 padding: 8px; |
61 font-size: 10px; | 68 font-size: 10px; |
62 text-align: center; | 69 text-align: center; |
63 white-space: nowrap; | 70 white-space: nowrap; |
64 } | 71 } |
65 | 72 |
66 .metrics .label { | 73 .metrics .label { |
67 position: absolute; | 74 position: absolute; |
68 font-size: 10px; | 75 font-size: 10px; |
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
727 | 734 |
728 .style-properties li.editing-sub-part { | 735 .style-properties li.editing-sub-part { |
729 padding: 3px 6px 8px 18px; | 736 padding: 3px 6px 8px 18px; |
730 margin: -1px -6px -8px -6px; | 737 margin: -1px -6px -8px -6px; |
731 text-overflow: clip; | 738 text-overflow: clip; |
732 } | 739 } |
733 | 740 |
734 .properties-widget-section { | 741 .properties-widget-section { |
735 padding: 2px 0px 2px 5px; | 742 padding: 2px 0px 2px 5px; |
736 } | 743 } |
OLD | NEW |