| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 -webkit-background-clip: padding; | 84 -webkit-background-clip: padding; |
| 85 } | 85 } |
| 86 | 86 |
| 87 body.inactive #toolbar { | 87 body.inactive #toolbar { |
| 88 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
33, 233, 233)), to(rgb(207, 207, 207))); | 88 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
33, 233, 233)), to(rgb(207, 207, 207))); |
| 89 border-bottom: 1px solid rgb(64%, 64%, 64%); | 89 border-bottom: 1px solid rgb(64%, 64%, 64%); |
| 90 } | 90 } |
| 91 | 91 |
| 92 body.detached.platform-mac-leopard:not(.remote) #toolbar, | 92 body.detached.platform-mac-leopard:not(.remote) #toolbar, |
| 93 body.detached.platform-mac-snowleopard:not(.remote) #toolbar { | 93 body.detached.platform-mac-snowleopard:not(.remote) #toolbar { |
| 94 background: transparent !important; | 94 background: transparent; |
| 95 } | 95 } |
| 96 | 96 |
| 97 body.attached #toolbar { | 97 body.attached #toolbar { |
| 98 height: 34px; | 98 height: 34px; |
| 99 border-top: 1px solid rgb(100, 100, 100); | 99 border-top: 1px solid rgb(100, 100, 100); |
| 100 cursor: row-resize; | 100 cursor: row-resize; |
| 101 padding-left: 0; | 101 padding-left: 0; |
| 102 } | 102 } |
| 103 | 103 |
| 104 body.attached.port-qt #toolbar { | 104 body.attached.port-qt #toolbar { |
| (...skipping 4349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4454 opacity: 0.85; | 4454 opacity: 0.85; |
| 4455 color: white; | 4455 color: white; |
| 4456 font-size: 12px; | 4456 font-size: 12px; |
| 4457 font-weight: bold; | 4457 font-weight: bold; |
| 4458 z-index: 10000; | 4458 z-index: 10000; |
| 4459 } | 4459 } |
| 4460 | 4460 |
| 4461 .resource-view.json { | 4461 .resource-view.json { |
| 4462 padding: 5px; | 4462 padding: 5px; |
| 4463 } | 4463 } |
| OLD | NEW |