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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 } | 170 } |
171 | 171 |
172 .function-popover-title .function-name { | 172 .function-popover-title .function-name { |
173 font-weight: bold; | 173 font-weight: bold; |
174 } | 174 } |
175 | 175 |
176 .panel.sources .sidebar-pane-stack { | 176 .panel.sources .sidebar-pane-stack { |
177 overflow: auto; | 177 overflow: auto; |
178 } | 178 } |
179 | 179 |
180 .targets-select { | |
181 width: 100% | |
182 } | |
183 | |
184 #targets-toolbar { | 180 #targets-toolbar { |
185 background: rgb(236, 236, 236); | 181 background: rgb(236, 236, 236); |
186 border-bottom: 1px solid rgb(189, 189, 189); | 182 border-bottom: 1px solid rgb(189, 189, 189); |
187 border-top: 1px solid rgb(189, 189, 189); | 183 border-top: 1px solid rgb(189, 189, 189); |
188 margin-right: 0px; | 184 margin-right: 0px; |
189 padding-right: 6px; | 185 padding-right: 6px; |
190 margin-top: -1px; | 186 margin-top: -1px; |
191 } | 187 } |
192 | 188 |
193 .panel.sources .drag-mask { | 189 .panel.sources .drag-mask { |
194 background-color: rgba(255,255,255,0.8); | 190 background-color: rgba(255,255,255,0.8); |
195 z-index: 1000; | 191 z-index: 1000; |
196 } | 192 } |
197 | 193 |
198 .panel.sources .drag-mask-inner { | 194 .panel.sources .drag-mask-inner { |
199 font-size: 30px; | 195 font-size: 30px; |
200 color: #999; | 196 color: #999; |
201 display: flex; | 197 display: flex; |
202 justify-content: center; | 198 justify-content: center; |
203 align-items: center; | 199 align-items: center; |
204 margin: 20px; | 200 margin: 20px; |
205 border: 4px dashed #ddd; | 201 border: 4px dashed #ddd; |
206 pointer-events: none; | 202 pointer-events: none; |
207 } | 203 } |
OLD | NEW |