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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 } | 164 } |
165 | 165 |
166 .styles-section:last-child { | 166 .styles-section:last-child { |
167 border-bottom: none; | 167 border-bottom: none; |
168 } | 168 } |
169 | 169 |
170 .styles-pane .sidebar-separator { | 170 .styles-pane .sidebar-separator { |
171 border-top: 0 none; | 171 border-top: 0 none; |
172 } | 172 } |
173 | 173 |
| 174 .style-panes-wrapper { |
| 175 overflow: auto; |
| 176 } |
| 177 |
174 .styles-section.read-only { | 178 .styles-section.read-only { |
175 background-color: #eee; | 179 background-color: #eee; |
176 } | 180 } |
177 | 181 |
178 .styles-section .style-properties li.not-parsed-ok { | 182 .styles-section .style-properties li.not-parsed-ok { |
179 margin-left: 0; | 183 margin-left: 0; |
180 } | 184 } |
181 | 185 |
182 .styles-filter-engaged, | 186 .styles-filter-engaged, |
183 .styles-section .style-properties li.filter-match, | 187 .styles-section .style-properties li.filter-match, |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 | 738 |
735 .global-animations-toolbar { | 739 .global-animations-toolbar { |
736 position: absolute; | 740 position: absolute; |
737 top: 0; | 741 top: 0; |
738 width: 100%; | 742 width: 100%; |
739 background-color: #eee; | 743 background-color: #eee; |
740 border-bottom: 1px solid rgb(163, 163, 163); | 744 border-bottom: 1px solid rgb(163, 163, 163); |
741 padding-left: 10px; | 745 padding-left: 10px; |
742 } | 746 } |
743 | 747 |
| 748 .view > .toolbar { |
| 749 border-bottom: 1px solid #eee; |
| 750 } |
| 751 |
744 .events-pane .section:not(:first-of-type) { | 752 .events-pane .section:not(:first-of-type) { |
745 border-top: 1px solid rgb(231, 231, 231); | 753 border-top: 1px solid rgb(231, 231, 231); |
746 } | 754 } |
747 | 755 |
748 .events-pane .section { | 756 .events-pane .section { |
749 margin: 0; | 757 margin: 0; |
750 } | 758 } |
751 | 759 |
752 .style-properties li.editing { | 760 .style-properties li.editing { |
753 margin-left: 10px; | 761 margin-left: 10px; |
(...skipping 15 matching lines...) Expand all Loading... |
769 position: absolute; | 777 position: absolute; |
770 right: 0; | 778 right: 0; |
771 bottom: 0; | 779 bottom: 0; |
772 visibility: hidden; | 780 visibility: hidden; |
773 background-color: rgba(255, 255, 255, 0.9); | 781 background-color: rgba(255, 255, 255, 0.9); |
774 } | 782 } |
775 | 783 |
776 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl
y):hover .sidebar-pane-section-toolbar { | 784 .styles-pane:not(.is-editing-style) .styles-section.matched-styles:not(.read-onl
y):hover .sidebar-pane-section-toolbar { |
777 visibility: visible; | 785 visibility: visible; |
778 } | 786 } |
OLD | NEW |