diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-03-31 12:27:26 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-03-31 12:27:26 +0200 |
commit | 615de6534f659b3f0bc8149b5ccf8558aaf491e9 (patch) | |
tree | 32b6fe310077a79454ab2ec032e7b7ecf717c5db /core/css | |
parent | ec46a071957dd21fa0613ebeb7a539ee8b1eaa47 (diff) | |
download | nextcloud-server-615de6534f659b3f0bc8149b5ccf8558aaf491e9.tar.gz nextcloud-server-615de6534f659b3f0bc8149b5ccf8558aaf491e9.zip |
fix duplicate rules for button/input styles, em to px
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 9719de191ef..68317d1588a 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -99,6 +99,8 @@ input[type="time"], textarea, select, button, .button, +input[type="submit"], +input[type="button"], #quota, .pager li a { width: 130px; @@ -173,14 +175,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, |