| 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 1470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1481 } | 1481 } |
| 1482 | 1482 |
| 1483 .section .properties .value.error { | 1483 .section .properties .value.error { |
| 1484 color: red; | 1484 color: red; |
| 1485 } | 1485 } |
| 1486 | 1486 |
| 1487 .section .properties .number, .event-properties .number { | 1487 .section .properties .number, .event-properties .number { |
| 1488 color: blue; | 1488 color: blue; |
| 1489 } | 1489 } |
| 1490 | 1490 |
| 1491 .section .properties .priority { | |
| 1492 color: rgb(128, 0, 0); | |
| 1493 } | |
| 1494 | |
| 1495 .section .properties .keyword, .event-properties .keyword { | 1491 .section .properties .keyword, .event-properties .keyword { |
| 1496 color: rgb(136, 19, 79); | 1492 color: rgb(136, 19, 79); |
| 1497 } | 1493 } |
| 1498 | 1494 |
| 1499 .section .properties .color, .event-properties .color { | 1495 .section .properties .color, .event-properties .color { |
| 1500 color: rgb(118, 15, 21); | 1496 color: rgb(118, 15, 21); |
| 1501 } | 1497 } |
| 1502 | 1498 |
| 1503 .swatch { | 1499 .swatch { |
| 1504 display: inline-block; | 1500 display: inline-block; |
| (...skipping 2806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4311 cursor: pointer; | 4307 cursor: pointer; |
| 4312 } | 4308 } |
| 4313 | 4309 |
| 4314 .cursor-pointer { | 4310 .cursor-pointer { |
| 4315 cursor: pointer; | 4311 cursor: pointer; |
| 4316 } | 4312 } |
| 4317 | 4313 |
| 4318 .cursor-auto { | 4314 .cursor-auto { |
| 4319 cursor: auto; | 4315 cursor: auto; |
| 4320 } | 4316 } |
| OLD | NEW |