| 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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 | 537 |
| 538 input[type="time"] { | 538 input[type="time"] { |
| 539 -webkit-align-items: center; | 539 -webkit-align-items: center; |
| 540 display: -webkit-inline-flex; | 540 display: -webkit-inline-flex; |
| 541 font-family: monospace; | 541 font-family: monospace; |
| 542 overflow: hidden; | 542 overflow: hidden; |
| 543 padding: 0; | 543 padding: 0; |
| 544 -webkit-padding-start: 1px; | 544 -webkit-padding-start: 1px; |
| 545 } | 545 } |
| 546 | 546 |
| 547 #if defined(ENABLE_INPUT_TYPE_WEEK) && ENABLE_INPUT_TYPE_WEEK | |
| 548 input[type="week"] { | 547 input[type="week"] { |
| 549 -webkit-align-items: center; | 548 -webkit-align-items: center; |
| 550 display: -webkit-inline-flex; | 549 display: -webkit-inline-flex; |
| 551 font-family: monospace; | 550 font-family: monospace; |
| 552 overflow: hidden; | 551 overflow: hidden; |
| 553 padding: 0; | 552 padding: 0; |
| 554 -webkit-padding-start: 1px; | 553 -webkit-padding-start: 1px; |
| 555 } | 554 } |
| 556 #endif | |
| 557 | 555 |
| 558 input::-webkit-datetime-edit { | 556 input::-webkit-datetime-edit { |
| 559 -webkit-flex: 1; | 557 -webkit-flex: 1; |
| 560 -webkit-user-modify: read-only !important; | 558 -webkit-user-modify: read-only !important; |
| 561 display: inline-block; | 559 display: inline-block; |
| 562 overflow: hidden; | 560 overflow: hidden; |
| 563 } | 561 } |
| 564 | 562 |
| 565 input::-webkit-datetime-edit-fields-wrapper { | 563 input::-webkit-datetime-edit-fields-wrapper { |
| 566 -webkit-user-modify: read-only !important; | 564 -webkit-user-modify: read-only !important; |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 } | 667 } |
| 670 | 668 |
| 671 input[type="time"] { | 669 input[type="time"] { |
| 672 -webkit-align-items: center; | 670 -webkit-align-items: center; |
| 673 -webkit-appearance: menulist-button; | 671 -webkit-appearance: menulist-button; |
| 674 display: -webkit-inline-flex; | 672 display: -webkit-inline-flex; |
| 675 overflow: hidden; | 673 overflow: hidden; |
| 676 width: 10em; | 674 width: 10em; |
| 677 } | 675 } |
| 678 | 676 |
| 679 #if defined(ENABLE_INPUT_TYPE_WEEK) && ENABLE_INPUT_TYPE_WEEK | |
| 680 input[type="week"] { | 677 input[type="week"] { |
| 681 -webkit-align-items: center; | 678 -webkit-align-items: center; |
| 682 -webkit-appearance: menulist-button; | 679 -webkit-appearance: menulist-button; |
| 683 display: -webkit-inline-flex; | 680 display: -webkit-inline-flex; |
| 684 overflow: hidden; | 681 overflow: hidden; |
| 685 width: 10em; | 682 width: 10em; |
| 686 } | 683 } |
| 687 #endif | |
| 688 | 684 |
| 689 input::-webkit-date-and-time-value { | 685 input::-webkit-date-and-time-value { |
| 690 margin: 1px 24px 1px 4px; | 686 margin: 1px 24px 1px 4px; |
| 691 white-space: pre; | 687 white-space: pre; |
| 692 } | 688 } |
| 693 #endif | 689 #endif |
| 694 | 690 |
| 695 input::-webkit-inner-spin-button { | 691 input::-webkit-inner-spin-button { |
| 696 -webkit-appearance: inner-spin-button; | 692 -webkit-appearance: inner-spin-button; |
| 697 display: block; | 693 display: block; |
| (...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1297 @page { | 1293 @page { |
| 1298 /* FIXME: Define the right default values for page properties. */ | 1294 /* FIXME: Define the right default values for page properties. */ |
| 1299 size: auto; | 1295 size: auto; |
| 1300 margin: auto; | 1296 margin: auto; |
| 1301 padding: 0px; | 1297 padding: 0px; |
| 1302 border-width: 0px; | 1298 border-width: 0px; |
| 1303 } | 1299 } |
| 1304 | 1300 |
| 1305 /* noscript is handled internally, as it depends on settings. */ | 1301 /* noscript is handled internally, as it depends on settings. */ |
| 1306 | 1302 |
| OLD | NEW |