| 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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 overflow: hidden; | 295 overflow: hidden; |
| 296 text-overflow: ellipsis; | 296 text-overflow: ellipsis; |
| 297 white-space: nowrap; | 297 white-space: nowrap; |
| 298 } | 298 } |
| 299 | 299 |
| 300 .resource-websocket-row-outcoming { | 300 .resource-websocket-row-outcoming { |
| 301 background-color: rgb(226, 247, 218); | 301 background-color: rgb(226, 247, 218); |
| 302 } | 302 } |
| 303 | 303 |
| 304 .resource-websocket-row-outcoming:not(.selected) td { | 304 .resource-websocket-row-outcoming:not(.selected) td { |
| 305 border-right-color: rgb(177, 209, 165); | 305 border-left-color: rgb(177, 209, 165); |
| 306 } | 306 } |
| 307 | 307 |
| 308 .resource-websocket-row-outcoming:not(.selected) td, .resource-websocket-row-out
coming:not(.selected) + tr td { | 308 .resource-websocket-row-outcoming:not(.selected) td, .resource-websocket-row-out
coming:not(.selected) + tr td { |
| 309 border-top-color: rgb(199, 236, 185); | 309 border-top-color: rgb(199, 236, 185); |
| 310 } | 310 } |
| 311 | 311 |
| 312 .resource-websocket-row-opcode { | 312 .resource-websocket-row-opcode { |
| 313 background-color: rgb(255, 255, 232); | 313 background-color: rgb(255, 255, 232); |
| 314 color: rgb(170, 111, 71); | 314 color: rgb(170, 111, 71); |
| 315 } | 315 } |
| 316 | 316 |
| 317 .resource-websocket-row-opcode td { | 317 .resource-websocket-row-opcode td { |
| 318 border-color: rgb(211, 187, 171); | 318 border-color: rgb(211, 187, 171); |
| 319 } | 319 } |
| 320 | 320 |
| 321 .resource-websocket-row-opcode td, .resource-websocket-row-opcode + tr td { | 321 .resource-websocket-row-opcode td, .resource-websocket-row-opcode + tr td { |
| 322 border-top-color: rgb(248, 240, 210); | 322 border-top-color: rgb(248, 240, 210); |
| 323 } | 323 } |
| 324 | 324 |
| 325 .resource-websocket-row-error { | 325 .resource-websocket-row-error { |
| 326 background-color: rgb(255, 237, 237); | 326 background-color: rgb(255, 237, 237); |
| 327 color: rgb(182, 0, 0); | 327 color: rgb(182, 0, 0); |
| 328 } | 328 } |
| OLD | NEW |