| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 float: right; | 67 float: right; |
| 68 margin-left: 10px; | 68 margin-left: 10px; |
| 69 } | 69 } |
| 70 | 70 |
| 71 .function-location-step-into { | 71 .function-location-step-into { |
| 72 position: relative; | 72 position: relative; |
| 73 height: 14px; | 73 height: 14px; |
| 74 transform: rotate(-90deg); | 74 transform: rotate(-90deg); |
| 75 } | 75 } |
| 76 | 76 |
| 77 .object-popover-container { |
| 78 display: inline-block; |
| 79 } |
| 80 |
| 77 .function-popover-title { | 81 .function-popover-title { |
| 78 border-bottom: 1px solid #AAA; | 82 border-bottom: 1px solid #AAA; |
| 79 margin-bottom: 3px; | 83 margin-bottom: 3px; |
| 80 padding-bottom: 2px; | 84 padding-bottom: 2px; |
| 81 display: flex; | 85 display: flex; |
| 82 justify-content: space-between; | 86 justify-content: space-between; |
| 83 align-items: center; | 87 align-items: center; |
| 84 } | 88 } |
| 85 | 89 |
| 86 .function-title-link-container { | 90 .function-title-link-container { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 } | 178 } |
| 175 | 179 |
| 176 .watch-expressions .name { | 180 .watch-expressions .name { |
| 177 color: rgb(136, 19, 145); | 181 color: rgb(136, 19, 145); |
| 178 flex: none; | 182 flex: none; |
| 179 white-space: nowrap; | 183 white-space: nowrap; |
| 180 text-overflow: ellipsis ; | 184 text-overflow: ellipsis ; |
| 181 overflow: hidden; | 185 overflow: hidden; |
| 182 } | 186 } |
| 183 | 187 |
| 188 .watch-expression-error { |
| 189 color: red; |
| 190 } |
| 191 |
| 192 .-theme-with-dark-background .watch-expression-error { |
| 193 color: hsl(0, 100%, 65%); |
| 194 } |
| 195 |
| 184 .watch-expressions-separator { | 196 .watch-expressions-separator { |
| 185 flex: none; | 197 flex: none; |
| 186 } | 198 } |
| 187 | 199 |
| 188 .watch-expressions .value { | 200 .watch-expressions .value { |
| 189 white-space: nowrap; | 201 white-space: nowrap; |
| 190 display: inline; | 202 display: inline; |
| 191 } | 203 } |
| 192 | 204 |
| 193 .watch-expression .text-prompt { | 205 .watch-expression .text-prompt { |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 text-align: center; | 273 text-align: center; |
| 262 font-style: italic; | 274 font-style: italic; |
| 263 padding: 4px; | 275 padding: 4px; |
| 264 color: #888; | 276 color: #888; |
| 265 background-color: #FFFFC2; | 277 background-color: #FFFFC2; |
| 266 } | 278 } |
| 267 | 279 |
| 268 .event-listeners-sidebar-pane .toolbar { | 280 .event-listeners-sidebar-pane .toolbar { |
| 269 border-bottom: 1px solid #eee; | 281 border-bottom: 1px solid #eee; |
| 270 } | 282 } |
| OLD | NEW |