diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-10-07 17:38:27 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-10-07 17:38:27 +0200 |
commit | 4af220d09e70b63195da2cb90f7556461cf29157 (patch) | |
tree | 1b3f11930dd0408743676cb3e1444840a62554fe /apps/files_sharing/css | |
parent | b48dffa9a302881e8d1effe9d03bc97e96adc23b (diff) | |
download | nextcloud-server-4af220d09e70b63195da2cb90f7556461cf29157.tar.gz nextcloud-server-4af220d09e70b63195da2cb90f7556461cf29157.zip |
Fix password screen for public shares
* Works in IE8, 9, 10, Firefox 24 and Chromium 30
* Credits to Julian Müller @Julian1998
Diffstat (limited to 'apps/files_sharing/css')
-rw-r--r-- | apps/files_sharing/css/authenticate.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/apps/files_sharing/css/authenticate.css b/apps/files_sharing/css/authenticate.css new file mode 100644 index 00000000000..cebe906dd59 --- /dev/null +++ b/apps/files_sharing/css/authenticate.css @@ -0,0 +1,26 @@ +#body-login form label.infield { + width: 190px; + padding: 10px; + left: 8px; + top: 8px; +} + +#password { + width: 190px !important; + padding: 10px; + margin: 6px; +} + +input[type="submit"]{ + width: 45px; + height: 45px; + margin: 6px; + background-image: url('%webroot%/core/img/actions/confirm.svg'); + background-repeat: no-repeat; + background-position: center; +} + +#body-login input[type="submit"] { + position: absolute; + top: 0px; +} |