OLD | NEW |
(Empty) | |
| 1 /*! |
| 2 * This file is part of website-defaults |
| 3 * Copyright (C) 2016-2017 eyeo GmbH |
| 4 * |
| 5 * website-defaults is free software: you can redistribute it and/or |
| 6 * modify it under the terms of the GNU General Public License as published by |
| 7 * the Free Software Foundation, either version 3 of the License, or |
| 8 * (at your option) any later version. |
| 9 * |
| 10 * website-defaults is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 * GNU General Public License for more details. |
| 14 * |
| 15 * You should have received a copy of the GNU General Public License |
| 16 * along with website-defaults. If not, see <http://www.gnu.org/licenses/>. |
| 17 */ |
| 18 |
| 19 /******************************************************************************* |
| 20 * Basic forms fields |
| 21 ******************************************************************************* |
| 22 * 1. Reset |
| 23 ******************************************************************************/ |
| 24 |
| 25 /* 1. Reset |
| 26 ******************************************************************************/ |
| 27 |
| 28 input, |
| 29 optgroup, |
| 30 select, |
| 31 textarea |
| 32 { |
| 33 font: inherit; |
| 34 } |
| 35 |
| 36 /* Show the overflow in IE and Edge */ |
| 37 |
| 38 input |
| 39 { |
| 40 overflow: visible; |
| 41 } |
| 42 |
| 43 /* Remove the inheritance of text transform in Edge, Firefox, and IE. */ |
| 44 |
| 45 select |
| 46 { |
| 47 text-transform: none; |
| 48 } |
| 49 |
| 50 fieldset, |
| 51 legend |
| 52 { |
| 53 display: block; |
| 54 } |
| 55 |
| 56 textarea |
| 57 { |
| 58 overflow: auto; |
| 59 } |
OLD | NEW |