| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 text-overflow: ellipsis; | 65 text-overflow: ellipsis; |
| 66 overflow: hidden; | 66 overflow: hidden; |
| 67 padding: 2px 0; | 67 padding: 2px 0; |
| 68 } | 68 } |
| 69 | 69 |
| 70 .breakpoint-list li:hover { | 70 .breakpoint-list li:hover { |
| 71 background-color: rgba(56, 121, 217, 0.2); | 71 background-color: rgba(56, 121, 217, 0.2); |
| 72 } | 72 } |
| 73 | 73 |
| 74 .breakpoint-list .checkbox-elem { | 74 .breakpoint-list .checkbox-elem { |
| 75 font-size: 10px; | |
| 76 margin: 0 4px; | 75 margin: 0 4px; |
| 77 vertical-align: top; | 76 vertical-align: top; |
| 78 position: relative; | 77 position: relative; |
| 79 z-index: 1; | 78 z-index: 1; |
| 80 top: 3px; | |
| 81 } | 79 } |
| 82 | 80 |
| 83 .breakpoint-list .source-text { | 81 .breakpoint-list .source-text { |
| 84 white-space: nowrap; | 82 white-space: nowrap; |
| 85 text-overflow: ellipsis; | 83 text-overflow: ellipsis; |
| 86 overflow: hidden; | 84 overflow: hidden; |
| 87 margin: 2px 0 0 20px; | |
| 88 } | 85 } |
| 89 | 86 |
| 90 .sidebar-pane .breakpoint-hit { | 87 .sidebar-pane .breakpoint-hit { |
| 91 background-color: rgb(255, 255, 194); | 88 background-color: rgb(255, 255, 194); |
| 92 } | 89 } |
| 93 | 90 |
| 94 li.breakpoint-hit .breakpoint-hit-marker { | 91 li.breakpoint-hit .breakpoint-hit-marker { |
| 95 background-color: rgb(255, 255, 194); | 92 background-color: rgb(255, 255, 194); |
| 96 height: 18px; | 93 height: 18px; |
| 97 left: 0; | 94 left: 0; |
| 98 margin-top: -16px; | 95 margin-top: -16px; |
| 99 position: absolute; | 96 position: absolute; |
| 100 right: 0; | 97 right: 0; |
| 101 z-index: -1; | 98 z-index: -1; |
| 102 } | 99 } |
| 103 | 100 |
| 104 .event-listener-breakpoints.properties-tree li { | 101 .event-listener-breakpoints.properties-tree li { |
| 105 height: 16px; | 102 height: 16px; |
| 106 padding-top: 3px; | 103 padding-top: 3px; |
| 107 } | 104 } |
| 108 | 105 |
| 109 .event-listener-breakpoints.properties-tree .children li { | 106 .event-listener-breakpoints.properties-tree .children li { |
| 110 margin-left: 12px; | 107 margin-left: 12px; |
| 111 height: 16px; | 108 height: 16px; |
| 112 } | 109 } |
| 113 | 110 |
| 114 .event-listener-breakpoints .checkbox-elem { | 111 .event-listener-breakpoints .checkbox-elem { |
| 115 float: left; | |
| 116 position: relative; | |
| 117 top: 1px; | |
| 118 font-size: 10px; | 112 font-size: 10px; |
| 119 } | 113 } |
| OLD | NEW |