| 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 891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 902 -webkit-user-modify: read-only !important; | 902 -webkit-user-modify: read-only !important; |
| 903 box-sizing: border-box; | 903 box-sizing: border-box; |
| 904 } | 904 } |
| 905 | 905 |
| 906 /* inline elements */ | 906 /* inline elements */ |
| 907 | 907 |
| 908 u, ins { | 908 u, ins { |
| 909 text-decoration: underline | 909 text-decoration: underline |
| 910 } | 910 } |
| 911 | 911 |
| 912 abbr[title], acronym[title] { |
| 913 text-decoration: dotted underline; |
| 914 } |
| 915 |
| 912 strong, b { | 916 strong, b { |
| 913 font-weight: bold | 917 font-weight: bold |
| 914 } | 918 } |
| 915 | 919 |
| 916 i, cite, em, var, address, dfn { | 920 i, cite, em, var, address, dfn { |
| 917 font-style: italic | 921 font-style: italic |
| 918 } | 922 } |
| 919 | 923 |
| 920 tt, code, kbd, samp { | 924 tt, code, kbd, samp { |
| 921 font-family: monospace | 925 font-family: monospace |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1109 padding: 0px; | 1113 padding: 0px; |
| 1110 border-width: 0px; | 1114 border-width: 0px; |
| 1111 } | 1115 } |
| 1112 | 1116 |
| 1113 /* Allows thead sections to print at the top of each page. */ | 1117 /* Allows thead sections to print at the top of each page. */ |
| 1114 @media print { | 1118 @media print { |
| 1115 thead { break-inside:avoid; } | 1119 thead { break-inside:avoid; } |
| 1116 } | 1120 } |
| 1117 | 1121 |
| 1118 /* noscript is handled internally, as it depends on settings. */ | 1122 /* noscript is handled internally, as it depends on settings. */ |
| OLD | NEW |