diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-03-31 15:56:19 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-03-31 15:56:19 +0200 |
commit | ab696edba685cd6d2a64c2e48907f03197aae53f (patch) | |
tree | e36d995b5150c2ee2a42f9918af12b25703edc80 /core/css | |
parent | 65e3f634000a2142f412b85d0443f241bb64a9ab (diff) | |
parent | 615de6534f659b3f0bc8149b5ccf8558aaf491e9 (diff) | |
download | nextcloud-server-ab696edba685cd6d2a64c2e48907f03197aae53f.tar.gz nextcloud-server-ab696edba685cd6d2a64c2e48907f03197aae53f.zip |
Merge pull request #7916 from owncloud/fix-input-sizes
Fix input sizes
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 2c043ab724c..2bc9717f930 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -101,11 +101,18 @@ input[type="time"], textarea, select, button, .button, +input[type="submit"], +input[type="button"], #quota, .pager li a { - width:10em; margin:.3em; padding:.6em .5em .4em; - font-size:1em; - background:#fff; color:#333; border:1px solid #ddd; outline:none; + width: 130px; + margin: 3px 3px 3px 0; + padding: 7px 6px 5px; + font-size: 13px; + background: #fff; + color: #333; + border: 1px solid #ddd; + outline: none; border-radius: 3px; } input[type="hidden"] { @@ -170,14 +177,12 @@ input[type="submit"], input[type="button"], button, .button, #quota, select, .pager li a { width: auto; - padding: .4em; + padding: 5px; background-color: rgba(240,240,240,.9); font-weight: bold; color: #555; border: 1px solid rgba(190,190,190,.9); cursor: pointer; - border-radius: 3px; - outline: none; } input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, input[type="button"]:focus, |