| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 } | 95 } |
| 96 | 96 |
| 97 .cursor-pointer { | 97 .cursor-pointer { |
| 98 cursor: pointer; | 98 cursor: pointer; |
| 99 } | 99 } |
| 100 | 100 |
| 101 .cursor-auto { | 101 .cursor-auto { |
| 102 cursor: auto; | 102 cursor: auto; |
| 103 } | 103 } |
| 104 | 104 |
| 105 .available-node-targets { |
| 106 height: 22px; |
| 107 display: flex; |
| 108 align-items: center; |
| 109 justify-content: flex-start; |
| 110 padding-left: 20px; |
| 111 border-top: 1px solid #eee; |
| 112 font-style: italic; |
| 113 } |
| 114 |
| 115 .available-node-targets > span { |
| 116 margin-left: 5px; |
| 117 } |
| 118 |
| 105 .watch-expression-delete-button { | 119 .watch-expression-delete-button { |
| 106 width: 10px; | 120 width: 10px; |
| 107 height: 10px; | 121 height: 10px; |
| 108 background-image: url(Images/deleteIcon.png); | 122 background-image: url(Images/deleteIcon.png); |
| 109 background-position: 0 0; | 123 background-position: 0 0; |
| 110 background-color: transparent; | 124 background-color: transparent; |
| 111 background-repeat: no-repeat; | 125 background-repeat: no-repeat; |
| 112 border: 0 none transparent; | 126 border: 0 none transparent; |
| 113 position: absolute; | 127 position: absolute; |
| 114 top: 4px; | 128 top: 4px; |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 text-align: center; | 258 text-align: center; |
| 245 font-style: italic; | 259 font-style: italic; |
| 246 padding: 4px; | 260 padding: 4px; |
| 247 color: #888; | 261 color: #888; |
| 248 background-color: #FFFFC2; | 262 background-color: #FFFFC2; |
| 249 } | 263 } |
| 250 | 264 |
| 251 .event-listeners-sidebar-pane .toolbar { | 265 .event-listeners-sidebar-pane .toolbar { |
| 252 border-bottom: 1px solid #eee; | 266 border-bottom: 1px solid #eee; |
| 253 } | 267 } |
| OLD | NEW |