| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 border-bottom: 1px solid rgb(202, 202, 202); | 49 border-bottom: 1px solid rgb(202, 202, 202); |
| 50 background-color: #eee; | 50 background-color: #eee; |
| 51 } | 51 } |
| 52 | 52 |
| 53 .sidebar-pane-title { | 53 .sidebar-pane-title { |
| 54 display: flex; | 54 display: flex; |
| 55 align-items: center; | 55 align-items: center; |
| 56 background-color: #eee; | 56 background-color: #eee; |
| 57 height: 20px; | 57 height: 20px; |
| 58 padding: 0 5px; | 58 padding: 0 5px; |
| 59 border-top: 1px solid #bbb; | 59 border-top: 1px solid #dadada; |
| 60 white-space: nowrap; | 60 white-space: nowrap; |
| 61 overflow: hidden; | 61 overflow: hidden; |
| 62 position: relative; | 62 position: relative; |
| 63 } | 63 } |
| 64 | 64 |
| 65 .sidebar-pane-title.expanded, | 65 .sidebar-pane-title.expanded, |
| 66 .sidebar-pane-title:last-child { | 66 .sidebar-pane-title:last-child { |
| 67 border-bottom: 1px solid #ddd; | 67 border-bottom: 1px solid #ddd; |
| 68 } | 68 } |
| 69 | 69 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 visibility: hidden; | 139 visibility: hidden; |
| 140 } | 140 } |
| 141 | 141 |
| 142 .styles-section.matched-styles:not(.read-only):hover .sidebar-pane-button-new-ru
le { | 142 .styles-section.matched-styles:not(.read-only):hover .sidebar-pane-button-new-ru
le { |
| 143 visibility: visible; | 143 visibility: visible; |
| 144 } | 144 } |
| 145 | 145 |
| 146 .sidebar-pane-button-new-rule:hover { | 146 .sidebar-pane-button-new-rule:hover { |
| 147 background-position: -23px 0; | 147 background-position: -23px 0; |
| 148 } | 148 } |
| OLD | NEW |