| 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 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 bottom: 24px; | 867 bottom: 24px; |
| 868 left: 0; | 868 left: 0; |
| 869 right: 0; | 869 right: 0; |
| 870 } | 870 } |
| 871 | 871 |
| 872 body.drawer-visible #drawer { | 872 body.drawer-visible #drawer { |
| 873 display: block; | 873 display: block; |
| 874 } | 874 } |
| 875 | 875 |
| 876 body.platform-mac .monospace, body.platform-mac .source-code { | 876 body.platform-mac .monospace, body.platform-mac .source-code { |
| 877 font-family: Monaco, monospace; | 877 font-size: 11px !important; |
| 878 font-family: Menlo, monospace; |
| 878 } | 879 } |
| 879 | 880 |
| 880 /* Keep .platform-mac to make the rule more specific than the general one above.
*/ | 881 body.platform-mac.platform-mac-tiger .monospace, |
| 881 body.platform-mac.platform-mac-snowleopard .monospace, | 882 body.platform-mac.platform-mac-tiger .source-code { |
| 882 body.platform-mac.platform-mac-snowleopard .source-code { | 883 font-size: 10px !important; |
| 883 font-size: 11px !important; | 884 font-family: Monaco, monospace; |
| 884 font-family: Menlo, monospace; | |
| 885 } | 885 } |
| 886 | 886 |
| 887 body.platform-windows .monospace, body.platform-windows .source-code { | 887 body.platform-windows .monospace, body.platform-windows .source-code { |
| 888 font-size: 12px !important; | 888 font-size: 12px !important; |
| 889 font-family: Consolas, Lucida Console, monospace; | 889 font-family: Consolas, Lucida Console, monospace; |
| 890 } | 890 } |
| 891 | 891 |
| 892 body.platform-linux .monospace, body.platform-linux .source-code { | 892 body.platform-linux .monospace, body.platform-linux .source-code { |
| 893 font-size: 11px !important; | 893 font-size: 11px !important; |
| 894 font-family: dejavu sans mono, monospace; | 894 font-family: dejavu sans mono, monospace; |
| (...skipping 2123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3018 } | 3018 } |
| 3019 | 3019 |
| 3020 body.platform-mac .progress-bar-container progress { | 3020 body.platform-mac .progress-bar-container progress { |
| 3021 margin-top: 6px; | 3021 margin-top: 6px; |
| 3022 } | 3022 } |
| 3023 | 3023 |
| 3024 .progress-bar-container button.status-bar-item { | 3024 .progress-bar-container button.status-bar-item { |
| 3025 border-left: none; | 3025 border-left: none; |
| 3026 margin-top: 1px; | 3026 margin-top: 1px; |
| 3027 } | 3027 } |
| OLD | NEW |