| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 } | 90 } |
| 91 | 91 |
| 92 .function-popover-title .function-name { | 92 .function-popover-title .function-name { |
| 93 font-weight: bold; | 93 font-weight: bold; |
| 94 } | 94 } |
| 95 | 95 |
| 96 .panel.sources .sidebar-pane-stack { | 96 .panel.sources .sidebar-pane-stack { |
| 97 overflow: auto; | 97 overflow: auto; |
| 98 } | 98 } |
| 99 | 99 |
| 100 .source-frame-breakpoint-condition { | |
| 101 z-index: 30; | |
| 102 padding: 4px; | |
| 103 background-color: rgb(203, 226, 255); | |
| 104 border-radius: 7px; | |
| 105 border: 2px solid rgb(169, 172, 203); | |
| 106 width: 90%; | |
| 107 pointer-events: auto; | |
| 108 } | |
| 109 | |
| 110 .source-frame-breakpoint-message { | |
| 111 background-color: transparent; | |
| 112 font-weight: normal; | |
| 113 font-size: 11px; | |
| 114 text-align: left; | |
| 115 text-shadow: none; | |
| 116 color: rgb(85, 85, 85); | |
| 117 cursor: default; | |
| 118 margin: 0 0 2px 0; | |
| 119 } | |
| 120 | |
| 121 #source-frame-breakpoint-condition { | |
| 122 margin: 0; | |
| 123 border: 1px inset rgb(190, 190, 190) !important; | |
| 124 width: 100%; | |
| 125 box-shadow: none !important; | |
| 126 outline: none !important; | |
| 127 -webkit-user-modify: read-write; | |
| 128 } | |
| 129 | |
| 130 .cursor-pointer { | 100 .cursor-pointer { |
| 131 cursor: pointer; | 101 cursor: pointer; |
| 132 } | 102 } |
| 133 | 103 |
| 134 .cursor-auto { | 104 .cursor-auto { |
| 135 cursor: auto; | 105 cursor: auto; |
| 136 } | 106 } |
| 137 | 107 |
| 138 .callstack-info { | 108 .callstack-info { |
| 139 text-align: center; | 109 text-align: center; |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 .scope-chain-sidebar-pane-section-title { | 248 .scope-chain-sidebar-pane-section-title { |
| 279 font-weight: normal; | 249 font-weight: normal; |
| 280 word-wrap: break-word; | 250 word-wrap: break-word; |
| 281 white-space: normal; | 251 white-space: normal; |
| 282 } | 252 } |
| 283 | 253 |
| 284 .scope-chain-sidebar-pane-section { | 254 .scope-chain-sidebar-pane-section { |
| 285 padding: 2px 4px 2px 4px; | 255 padding: 2px 4px 2px 4px; |
| 286 overflow: hidden; | 256 overflow: hidden; |
| 287 } | 257 } |
| OLD | NEW |