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 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
804 select:-internal-list-box option:checked { | 804 select:-internal-list-box option:checked { |
805 background-color: -internal-inactive-list-box-selection !important; | 805 background-color: -internal-inactive-list-box-selection !important; |
806 color: -internal-inactive-list-box-selection-text !important; | 806 color: -internal-inactive-list-box-selection-text !important; |
807 } | 807 } |
808 | 808 |
809 select:-internal-list-box:disabled option:checked, | 809 select:-internal-list-box:disabled option:checked, |
810 select:-internal-list-box option:checked:disabled { | 810 select:-internal-list-box option:checked:disabled { |
811 color: gray !important; | 811 color: gray !important; |
812 } | 812 } |
813 | 813 |
| 814 select:-internal-list-box hr { |
| 815 border-style: none; |
| 816 } |
814 | 817 |
815 output { | 818 output { |
816 display: inline; | 819 display: inline; |
817 } | 820 } |
818 | 821 |
819 /* meter */ | 822 /* meter */ |
820 | 823 |
821 meter { | 824 meter { |
822 -webkit-appearance: meter; | 825 -webkit-appearance: meter; |
823 box-sizing: border-box; | 826 box-sizing: border-box; |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1098 @page { | 1101 @page { |
1099 /* FIXME: Define the right default values for page properties. */ | 1102 /* FIXME: Define the right default values for page properties. */ |
1100 size: auto; | 1103 size: auto; |
1101 margin: auto; | 1104 margin: auto; |
1102 padding: 0px; | 1105 padding: 0px; |
1103 border-width: 0px; | 1106 border-width: 0px; |
1104 } | 1107 } |
1105 | 1108 |
1106 /* noscript is handled internally, as it depends on settings. */ | 1109 /* noscript is handled internally, as it depends on settings. */ |
1107 | 1110 |
OLD | NEW |