| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 background-origin: padding-box; | 82 background-origin: padding-box; |
| 83 background-clip: padding-box; | 83 background-clip: padding-box; |
| 84 } | 84 } |
| 85 | 85 |
| 86 .inspector-view-toolbar-left { | 86 .inspector-view-toolbar-left { |
| 87 padding-left: 2px; | 87 padding-left: 2px; |
| 88 margin-right: -5px; /* Should compensate for .tabbed-pane-header-contents ma
rgin-left. */ | 88 margin-right: -5px; /* Should compensate for .tabbed-pane-header-contents ma
rgin-left. */ |
| 89 } | 89 } |
| 90 | 90 |
| 91 .inspector-view-close-button { | 91 .inspector-view-close-button { |
| 92 padding-right: 6px; | |
| 93 padding-left: 4px; | |
| 94 cursor: default; | 92 cursor: default; |
| 93 width: 28px; |
| 94 padding-left: 8px; |
| 95 } |
| 96 |
| 97 .material .inspector-view-close-button { |
| 98 width: 32px; |
| 95 } | 99 } |
| 96 | 100 |
| 97 body.undocked .inspector-view-close-button { | 101 body.undocked .inspector-view-close-button { |
| 98 display: none; | 102 display: none; |
| 99 } | 103 } |
| 100 | 104 |
| 101 .bubble-repeat-count { | 105 .bubble-repeat-count { |
| 102 display: inline-block; | 106 display: inline-block; |
| 103 height: 14px; | 107 height: 14px; |
| 104 background-color: rgb(128, 151, 189); | 108 background-color: rgb(128, 151, 189); |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 } | 647 } |
| 644 | 648 |
| 645 body.inactive select.chrome-select, | 649 body.inactive select.chrome-select, |
| 646 .chrome-select:disabled { | 650 .chrome-select:disabled { |
| 647 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); | 651 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); |
| 648 border-color: rgba(80, 80, 80, 0.2); | 652 border-color: rgba(80, 80, 80, 0.2); |
| 649 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), | 653 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), |
| 650 inset 0 1px 2px rgba(255, 255, 255, 0.75); | 654 inset 0 1px 2px rgba(255, 255, 255, 0.75); |
| 651 color: #aaa; | 655 color: #aaa; |
| 652 } | 656 } |
| OLD | NEW |