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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 direction: ltr; | 443 direction: ltr; |
444 } | 444 } |
445 | 445 |
446 input::-webkit-clear-button { | 446 input::-webkit-clear-button { |
447 -webkit-appearance: searchfield-cancel-button; | 447 -webkit-appearance: searchfield-cancel-button; |
448 display: inline-block; | 448 display: inline-block; |
449 flex: none; | 449 flex: none; |
450 -webkit-user-modify: read-only !important; | 450 -webkit-user-modify: read-only !important; |
451 -webkit-margin-start: 2px; | 451 -webkit-margin-start: 2px; |
452 opacity: 0; | 452 opacity: 0; |
453 pionter-events: none; | 453 pointer-events: none; |
454 } | 454 } |
455 | 455 |
456 input:enabled:read-write:-webkit-any(:focus,:hover)::-webkit-clear-button { | 456 input:enabled:read-write:-webkit-any(:focus,:hover)::-webkit-clear-button { |
457 opacity: 1; | 457 opacity: 1; |
458 pointer-events: auto; | 458 pointer-events: auto; |
459 } | 459 } |
460 | 460 |
461 input[type="search" i]::-webkit-search-cancel-button { | 461 input[type="search" i]::-webkit-search-cancel-button { |
462 -webkit-appearance: searchfield-cancel-button; | 462 -webkit-appearance: searchfield-cancel-button; |
463 display: block; | 463 display: block; |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
605 border: initial; | 605 border: initial; |
606 margin: 2px; | 606 margin: 2px; |
607 color: #909090; | 607 color: #909090; |
608 } | 608 } |
609 | 609 |
610 input[type="range" i]::-webkit-slider-container, input[type="range" i]::-webkit-
media-slider-container { | 610 input[type="range" i]::-webkit-slider-container, input[type="range" i]::-webkit-
media-slider-container { |
611 flex: 1; | 611 flex: 1; |
612 box-sizing: border-box; | 612 box-sizing: border-box; |
613 -webkit-user-modify: read-only !important; | 613 -webkit-user-modify: read-only !important; |
614 display: flex; | 614 display: flex; |
615 -webkit-align-contents: center; | |
616 } | 615 } |
617 | 616 |
618 input[type="range" i]::-webkit-slider-runnable-track { | 617 input[type="range" i]::-webkit-slider-runnable-track { |
619 flex: 1; | 618 flex: 1; |
620 -webkit-align-self: center; | 619 -webkit-align-self: center; |
621 | 620 |
622 box-sizing: border-box; | 621 box-sizing: border-box; |
623 -webkit-user-modify: read-only !important; | 622 -webkit-user-modify: read-only !important; |
624 display: block; | 623 display: block; |
625 } | 624 } |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1111 @page { | 1110 @page { |
1112 /* FIXME: Define the right default values for page properties. */ | 1111 /* FIXME: Define the right default values for page properties. */ |
1113 size: auto; | 1112 size: auto; |
1114 margin: auto; | 1113 margin: auto; |
1115 padding: 0px; | 1114 padding: 0px; |
1116 border-width: 0px; | 1115 border-width: 0px; |
1117 } | 1116 } |
1118 | 1117 |
1119 /* noscript is handled internally, as it depends on settings. */ | 1118 /* noscript is handled internally, as it depends on settings. */ |
1120 | 1119 |
OLD | NEW |