OLD | NEW |
1 /* | 1 /* |
2 * The default style sheet used to render HTML. | 2 * The default style sheet used to render HTML. |
3 * | 3 * |
4 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 4 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
716 padding: 0.17em 0.34em; | 716 padding: 0.17em 0.34em; |
717 -webkit-user-modify: read-only !important; | 717 -webkit-user-modify: read-only !important; |
718 opacity: 0; | 718 opacity: 0; |
719 pointer-events: none; | 719 pointer-events: none; |
720 } | 720 } |
721 | 721 |
722 input::-webkit-calendar-picker-indicator:hover { | 722 input::-webkit-calendar-picker-indicator:hover { |
723 background-color: #eee; | 723 background-color: #eee; |
724 } | 724 } |
725 | 725 |
726 input:enabled:read-write:-webkit-any(:focus,:hover)::-webkit-calendar-picker-ind
icator { | 726 input:enabled:read-write:-webkit-any(:focus,:hover)::-webkit-calendar-picker-ind
icator, |
| 727 input::-webkit-calendar-picker-indicator:focus { |
727 opacity: 1; | 728 opacity: 1; |
728 pointer-events: auto; | 729 pointer-events: auto; |
729 } | 730 } |
730 | 731 |
731 input[type="date" i]:disabled::-webkit-clear-button, | 732 input[type="date" i]:disabled::-webkit-clear-button, |
732 input[type="date" i]:disabled::-webkit-inner-spin-button, | 733 input[type="date" i]:disabled::-webkit-inner-spin-button, |
733 input[type="datetime-local" i]:disabled::-webkit-clear-button, | 734 input[type="datetime-local" i]:disabled::-webkit-clear-button, |
734 input[type="datetime-local" i]:disabled::-webkit-inner-spin-button, | 735 input[type="datetime-local" i]:disabled::-webkit-inner-spin-button, |
735 input[type="month" i]:disabled::-webkit-clear-button, | 736 input[type="month" i]:disabled::-webkit-clear-button, |
736 input[type="month" i]:disabled::-webkit-inner-spin-button, | 737 input[type="month" i]:disabled::-webkit-inner-spin-button, |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1088 @page { | 1089 @page { |
1089 /* FIXME: Define the right default values for page properties. */ | 1090 /* FIXME: Define the right default values for page properties. */ |
1090 size: auto; | 1091 size: auto; |
1091 margin: auto; | 1092 margin: auto; |
1092 padding: 0px; | 1093 padding: 0px; |
1093 border-width: 0px; | 1094 border-width: 0px; |
1094 } | 1095 } |
1095 | 1096 |
1096 /* noscript is handled internally, as it depends on settings. */ | 1097 /* noscript is handled internally, as it depends on settings. */ |
1097 | 1098 |
OLD | NEW |