diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-12-03 07:23:04 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-12-03 07:23:04 -0800 |
commit | ab21e1b16e6dffd10efd7be9f9d81c35db9fd71e (patch) | |
tree | f27144d0ebb60b34bacc6038bf5d31e4e0d8d07f | |
parent | 7f4436eafe6fd134ef6e804a9763f1113d6c9b6e (diff) | |
parent | 59e75d432676f63495598dfee5999db9bffe6a8a (diff) | |
download | nextcloud-server-ab21e1b16e6dffd10efd7be9f9d81c35db9fd71e.tar.gz nextcloud-server-ab21e1b16e6dffd10efd7be9f9d81c35db9fd71e.zip |
Merge pull request #5931 from owncloud/fix-time-field-properly
fix time input field properly, details
-rw-r--r-- | core/css/styles.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index c651eb05238..9a32151deb9 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -105,8 +105,8 @@ textarea:hover, textarea:focus, textarea:active { input[type="checkbox"] { margin:0; padding:0; height:auto; width:auto; } input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:#111 !important; } input[type="time"] { - width: 110px; - height: 30px; + width: initial; + height: 31px; -moz-box-sizing: border-box; box-sizing: border-box; } #quota { |