| 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 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 height: 100% | 780 height: 100% |
| 781 } | 781 } |
| 782 | 782 |
| 783 input[type="color"]::-webkit-color-swatch { | 783 input[type="color"]::-webkit-color-swatch { |
| 784 background-color: #000000; | 784 background-color: #000000; |
| 785 border: 1px solid #777777; | 785 border: 1px solid #777777; |
| 786 flex: 1; | 786 flex: 1; |
| 787 -webkit-user-modify: read-only !important; | 787 -webkit-user-modify: read-only !important; |
| 788 } | 788 } |
| 789 | 789 |
| 790 #if defined(ENABLE_CALENDAR_PICKER) && ENABLE_CALENDAR_PICKER | |
| 791 input::-webkit-calendar-picker-indicator { | 790 input::-webkit-calendar-picker-indicator { |
| 792 display: inline-block; | 791 display: inline-block; |
| 793 width: 0.66em; | 792 width: 0.66em; |
| 794 height: 0.66em; | 793 height: 0.66em; |
| 795 padding: 0.17em 0.34em; | 794 padding: 0.17em 0.34em; |
| 796 -webkit-user-modify: read-only !important; | 795 -webkit-user-modify: read-only !important; |
| 797 } | 796 } |
| 798 | 797 |
| 799 input::-webkit-calendar-picker-indicator:hover { | 798 input::-webkit-calendar-picker-indicator:hover { |
| 800 background-color: #eee; | 799 background-color: #eee; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 813 input[type="date"][readonly]::-webkit-inner-spin-button, | 812 input[type="date"][readonly]::-webkit-inner-spin-button, |
| 814 input[type="datetime-local"][readonly]::-webkit-clear-button, | 813 input[type="datetime-local"][readonly]::-webkit-clear-button, |
| 815 input[type="datetime-local"][readonly]::-webkit-inner-spin-button, | 814 input[type="datetime-local"][readonly]::-webkit-inner-spin-button, |
| 816 input[type="month"][readonly]::-webkit-clear-button, | 815 input[type="month"][readonly]::-webkit-clear-button, |
| 817 input[type="month"][readonly]::-webkit-inner-spin-button, | 816 input[type="month"][readonly]::-webkit-inner-spin-button, |
| 818 input[type="week"][readonly]::-webkit-clear-button, | 817 input[type="week"][readonly]::-webkit-clear-button, |
| 819 input[type="week"][readonly]::-webkit-inner-spin-button, | 818 input[type="week"][readonly]::-webkit-inner-spin-button, |
| 820 input[readonly]::-webkit-calendar-picker-indicator { | 819 input[readonly]::-webkit-calendar-picker-indicator { |
| 821 visibility: hidden; | 820 visibility: hidden; |
| 822 } | 821 } |
| 823 #endif // ENABLE_CALENDAR_PICKER | |
| 824 | 822 |
| 825 select { | 823 select { |
| 826 -webkit-appearance: menulist; | 824 -webkit-appearance: menulist; |
| 827 box-sizing: border-box; | 825 box-sizing: border-box; |
| 828 align-items: center; | 826 align-items: center; |
| 829 border: 1px solid; | 827 border: 1px solid; |
| 830 white-space: pre; | 828 white-space: pre; |
| 831 -webkit-rtl-ordering: logical; | 829 -webkit-rtl-ordering: logical; |
| 832 color: black; | 830 color: black; |
| 833 background-color: white; | 831 background-color: white; |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1131 } | 1129 } |
| 1132 | 1130 |
| 1133 /* viewport */ | 1131 /* viewport */ |
| 1134 | 1132 |
| 1135 @viewport { | 1133 @viewport { |
| 1136 min-width: 980px; | 1134 min-width: 980px; |
| 1137 } | 1135 } |
| 1138 | 1136 |
| 1139 /* noscript is handled internally, as it depends on settings. */ | 1137 /* noscript is handled internally, as it depends on settings. */ |
| 1140 | 1138 |
| OLD | NEW |