| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 display: none; | 151 display: none; |
| 152 position: absolute; | 152 position: absolute; |
| 153 left: 0; | 153 left: 0; |
| 154 right: 0; | 154 right: 0; |
| 155 height: 15px; | 155 height: 15px; |
| 156 z-index: -1; | 156 z-index: -1; |
| 157 } | 157 } |
| 158 | 158 |
| 159 .outline-disclosure li.selected .selection { | 159 .outline-disclosure li.selected .selection { |
| 160 display: block; | 160 display: block; |
| 161 background-color: rgb(212, 212, 212); | 161 background-color: #dadada; |
| 162 } | 162 } |
| 163 | 163 |
| 164 .outline-disclosure li.in-clipboard .highlight { | 164 .outline-disclosure li.in-clipboard .highlight { |
| 165 outline: 1px dotted darkgrey; | 165 outline: 1px dotted darkgrey; |
| 166 } | 166 } |
| 167 | 167 |
| 168 .outline-disclosure li.elements-drag-over .selection { | 168 .outline-disclosure li.elements-drag-over .selection { |
| 169 display: block; | 169 display: block; |
| 170 margin-top: -2px; | 170 margin-top: -2px; |
| 171 border-top: 2px solid rgb(56, 121, 217); | 171 border-top: 2px solid rgb(56, 121, 217); |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 } | 276 } |
| 277 | 277 |
| 278 .child-editing { | 278 .child-editing { |
| 279 color: #222 !important; | 279 color: #222 !important; |
| 280 text-decoration: none !important; | 280 text-decoration: none !important; |
| 281 overflow: visible !important; | 281 overflow: visible !important; |
| 282 } | 282 } |
| 283 | 283 |
| 284 .sidebar { | 284 .sidebar { |
| 285 overflow-x: hidden; | 285 overflow-x: hidden; |
| 286 background-color: #eee; | 286 background-color: #f3f3f3; |
| 287 } | 287 } |
| 288 | 288 |
| 289 .pane-title-button { | 289 .pane-title-button { |
| 290 color: rgb(6, 6, 6); | 290 color: rgb(6, 6, 6); |
| 291 background-color: transparent; | 291 background-color: transparent; |
| 292 border: 1px solid rgb(165, 165, 165); | 292 border: 1px solid rgb(165, 165, 165); |
| 293 background-color: #eee; | 293 background-color: #eee; |
| 294 background-image: linear-gradient(to bottom, rgb(252, 252, 252), rgb(223, 22
3, 223)); | 294 background-image: linear-gradient(to bottom, rgb(252, 252, 252), rgb(223, 22
3, 223)); |
| 295 border-radius: 12px; | 295 border-radius: 12px; |
| 296 -webkit-appearance: none; | 296 -webkit-appearance: none; |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 } | 628 } |
| 629 | 629 |
| 630 body.inactive select.chrome-select, | 630 body.inactive select.chrome-select, |
| 631 .chrome-select:disabled { | 631 .chrome-select:disabled { |
| 632 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); | 632 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); |
| 633 border-color: rgba(80, 80, 80, 0.2); | 633 border-color: rgba(80, 80, 80, 0.2); |
| 634 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), | 634 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), |
| 635 inset 0 1px 2px rgba(255, 255, 255, 0.75); | 635 inset 0 1px 2px rgba(255, 255, 255, 0.75); |
| 636 color: #aaa; | 636 color: #aaa; |
| 637 } | 637 } |
| OLD | NEW |