diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-07 10:21:35 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-07 10:21:35 +0100 |
commit | 30bd915c0e032bd09ef15b674cc19f82279ff3af (patch) | |
tree | f05c83bb38d0b59f45d4f8206c878020b72fe5f7 /core/css/inputs.css | |
parent | 764b2932ff1632877637bfb72de385dda4e7d6e7 (diff) | |
parent | b2d2b52eea7efdf5f35c359f1caae81c75c44270 (diff) | |
download | nextcloud-server-30bd915c0e032bd09ef15b674cc19f82279ff3af.tar.gz nextcloud-server-30bd915c0e032bd09ef15b674cc19f82279ff3af.zip |
Merge pull request #20480 from owncloud/css-prefixes
CSS prefixes
Diffstat (limited to 'core/css/inputs.css')
-rw-r--r-- | core/css/inputs.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/css/inputs.css b/core/css/inputs.css index 9f440a6c359..b2d78c25621 100644 --- a/core/css/inputs.css +++ b/core/css/inputs.css @@ -55,7 +55,7 @@ input[type="email"], input[type="url"], input[type="time"] { -webkit-appearance:textfield; -moz-appearance:textfield; - -webkit-box-sizing:content-box; -moz-box-sizing:content-box; box-sizing:content-box; + box-sizing:content-box; } input[type="text"]:hover, input[type="text"]:focus, input[type="text"]:active, input[type="password"]:hover, input[type="password"]:focus, input[type="password"]:active, @@ -119,7 +119,7 @@ html:not(.ie8) input[type="checkbox"].checkbox:hover+label:before, input[type="c input[type="time"] { width: initial; height: 31px; - -moz-box-sizing: border-box; box-sizing: border-box; + box-sizing: border-box; } select { |