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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
592 } | 592 } |
593 | 593 |
594 .sidebar-pane .metrics-and-styles, | 594 .sidebar-pane .metrics-and-styles, |
595 .sidebar-pane .metrics-and-computed { | 595 .sidebar-pane .metrics-and-computed { |
596 display: flex !important; | 596 display: flex !important; |
597 flex-direction: column !important; | 597 flex-direction: column !important; |
598 position: relative; | 598 position: relative; |
599 } | 599 } |
600 | 600 |
601 .sidebar-pane .style-panes-wrapper { | 601 .sidebar-pane .style-panes-wrapper { |
| 602 transform: translateZ(0); |
602 flex: 1; | 603 flex: 1; |
603 overflow-y: auto; | 604 overflow-y: auto; |
604 position: relative; | 605 position: relative; |
605 } | 606 } |
606 | 607 |
607 .sidebar-pane.composite .metrics-and-computed .sidebar-pane-toolbar, | 608 .sidebar-pane.composite .metrics-and-computed .sidebar-pane-toolbar, |
608 .sidebar-pane.composite .metrics-and-styles .sidebar-pane-toolbar { | 609 .sidebar-pane.composite .metrics-and-styles .sidebar-pane-toolbar { |
609 position: absolute; | 610 position: absolute; |
610 } | 611 } |
611 | 612 |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
747 | 748 |
748 .crumbs .crumb.selected, .crumbs .crumb.selected:hover { | 749 .crumbs .crumb.selected, .crumbs .crumb.selected:hover { |
749 background-color: rgb(56, 121, 217); | 750 background-color: rgb(56, 121, 217); |
750 color: white; | 751 color: white; |
751 text-shadow: rgba(255, 255, 255, 0.5) 0 0 0; | 752 text-shadow: rgba(255, 255, 255, 0.5) 0 0 0; |
752 } | 753 } |
753 | 754 |
754 .crumbs .crumb:hover { | 755 .crumbs .crumb:hover { |
755 background-color: rgb(216, 216, 216); | 756 background-color: rgb(216, 216, 216); |
756 } | 757 } |
OLD | NEW |