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 25 matching lines...) Expand all Loading... |
36 | 36 |
37 #elements-content:not(.elements-wrap) > div { | 37 #elements-content:not(.elements-wrap) > div { |
38 display: inline-block; | 38 display: inline-block; |
39 min-width: 100%; | 39 min-width: 100%; |
40 } | 40 } |
41 | 41 |
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 { |
| 47 border-bottom: 1px solid hsla(0, 0%, 0%, 0.1); |
| 48 flex-shrink: 0; |
| 49 } |
| 50 |
46 #elements-crumbs { | 51 #elements-crumbs { |
47 flex: 0 0 19px; | 52 flex: 0 0 19px; |
48 background-color: white; | 53 background-color: white; |
49 border-top: 1px solid #ccc; | 54 border-top: 1px solid #ccc; |
50 overflow: hidden; | 55 overflow: hidden; |
51 height: 19px; | 56 height: 19px; |
52 width: 100%; | 57 width: 100%; |
53 } | 58 } |
54 | 59 |
| 60 .material #elements-crumbs { |
| 61 flex: 1 0 28px; |
| 62 border: none; |
| 63 height: 100%; |
| 64 } |
| 65 |
55 .metrics { | 66 .metrics { |
56 padding: 8px; | 67 padding: 8px; |
57 font-size: 10px; | 68 font-size: 10px; |
58 text-align: center; | 69 text-align: center; |
59 white-space: nowrap; | 70 white-space: nowrap; |
60 } | 71 } |
61 | 72 |
62 .metrics .label { | 73 .metrics .label { |
63 position: absolute; | 74 position: absolute; |
64 font-size: 10px; | 75 font-size: 10px; |
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
719 .style-properties li.editing-sub-part { | 730 .style-properties li.editing-sub-part { |
720 padding: 3px 6px 8px 18px; | 731 padding: 3px 6px 8px 18px; |
721 margin: -1px -6px -8px -6px; | 732 margin: -1px -6px -8px -6px; |
722 text-overflow: clip; | 733 text-overflow: clip; |
723 } | 734 } |
724 | 735 |
725 .styles-pane-toolbar { | 736 .styles-pane-toolbar { |
726 float: right; | 737 float: right; |
727 margin-top: -3px; | 738 margin-top: -3px; |
728 } | 739 } |
OLD | NEW |