| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 padding-bottom: 2px; | 80 padding-bottom: 2px; |
| 81 display: flex; | 81 display: flex; |
| 82 justify-content: space-between; | 82 justify-content: space-between; |
| 83 align-items: center; | 83 align-items: center; |
| 84 } | 84 } |
| 85 | 85 |
| 86 .function-title-link-container { | 86 .function-title-link-container { |
| 87 display: flex; | 87 display: flex; |
| 88 align-items: center; | 88 align-items: center; |
| 89 position: relative; | 89 position: relative; |
| 90 margin-left: 10px; |
| 90 } | 91 } |
| 91 | 92 |
| 92 .function-popover-title .function-name { | 93 .function-popover-title .function-name { |
| 93 font-weight: bold; | 94 font-weight: bold; |
| 94 } | 95 } |
| 95 | 96 |
| 96 .panel.sources .sidebar-pane-stack { | 97 .panel.sources .sidebar-pane-stack { |
| 97 overflow: auto; | 98 overflow: auto; |
| 98 } | 99 } |
| 99 | 100 |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 .scope-chain-sidebar-pane-section-title { | 249 .scope-chain-sidebar-pane-section-title { |
| 249 font-weight: normal; | 250 font-weight: normal; |
| 250 word-wrap: break-word; | 251 word-wrap: break-word; |
| 251 white-space: normal; | 252 white-space: normal; |
| 252 } | 253 } |
| 253 | 254 |
| 254 .scope-chain-sidebar-pane-section { | 255 .scope-chain-sidebar-pane-section { |
| 255 padding: 2px 4px 2px 4px; | 256 padding: 2px 4px 2px 4px; |
| 256 overflow: hidden; | 257 overflow: hidden; |
| 257 } | 258 } |
| OLD | NEW |