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 21 matching lines...) Expand all Loading... |
32 outline: auto 5px -webkit-focus-ring-color; | 32 outline: auto 5px -webkit-focus-ring-color; |
33 } | 33 } |
34 | 34 |
35 input[type="checkbox"] { | 35 input[type="checkbox"] { |
36 height: 13px; | 36 height: 13px; |
37 width: 13px; | 37 width: 13px; |
38 margin: auto 3px; | 38 margin: auto 3px; |
39 flex-shrink: 0; | 39 flex-shrink: 0; |
40 } | 40 } |
41 | 41 |
| 42 label:hover { |
| 43 cursor: pointer; |
| 44 } |
| 45 |
| 46 label:hover input { |
| 47 box-shadow: 0 0 3px highlight; |
| 48 } |
| 49 |
| 50 fieldset[disabled] label:hover input { |
| 51 box-shadow: none; |
| 52 } |
| 53 |
42 .fill { | 54 .fill { |
43 position: absolute; | 55 position: absolute; |
44 top: 0; | 56 top: 0; |
45 left: 0; | 57 left: 0; |
46 right: 0; | 58 right: 0; |
47 bottom: 0; | 59 bottom: 0; |
48 } | 60 } |
49 | 61 |
50 .view { | 62 .view { |
51 position: relative; | 63 position: relative; |
(...skipping 2782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2834 } | 2846 } |
2835 | 2847 |
2836 .root-view > .split-view > .split-view-sidebar { | 2848 .root-view > .split-view > .split-view-sidebar { |
2837 position: relative; | 2849 position: relative; |
2838 } | 2850 } |
2839 | 2851 |
2840 select.drop-down-menu { | 2852 select.drop-down-menu { |
2841 border: none; | 2853 border: none; |
2842 -webkit-appearance: none; | 2854 -webkit-appearance: none; |
2843 } | 2855 } |
OLD | NEW |