| 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 26 matching lines...) Expand all Loading... |
| 37 left: 0; | 37 left: 0; |
| 38 right: 0; | 38 right: 0; |
| 39 bottom: 0; | 39 bottom: 0; |
| 40 } | 40 } |
| 41 | 41 |
| 42 .hidden { | 42 .hidden { |
| 43 display: none; | 43 display: none; |
| 44 } | 44 } |
| 45 | 45 |
| 46 .nowrap { | 46 .nowrap { |
| 47 white-space: nowrap; | 47 white-space: nowrap !important; |
| 48 } | 48 } |
| 49 | 49 |
| 50 #toolbar { | 50 #toolbar { |
| 51 position: absolute; | 51 position: absolute; |
| 52 top: 0; | 52 top: 0; |
| 53 left: 0; | 53 left: 0; |
| 54 right: 0; | 54 right: 0; |
| 55 height: 56px; | 55 height: 56px; |
| 56 padding: 0 5px; | 56 padding: 0 5px; |
| 57 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1
91, 191, 191)), to(rgb(151, 151, 151))); | 57 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1
91, 191, 191)), to(rgb(151, 151, 151))); |
| (...skipping 2811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2869 } | 2869 } |
| 2870 | 2870 |
| 2871 .inspector-footer { | 2871 .inspector-footer { |
| 2872 position: absolute; | 2872 position: absolute; |
| 2873 bottom: 0; | 2873 bottom: 0; |
| 2874 left: 0; | 2874 left: 0; |
| 2875 right: 0; | 2875 right: 0; |
| 2876 font-size: 11px; | 2876 font-size: 11px; |
| 2877 height: auto; | 2877 height: auto; |
| 2878 } | 2878 } |
| OLD | NEW |