diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2014-01-27 04:11:15 -0800 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2014-01-27 04:11:15 -0800 |
commit | 0a1708ba11b5380f9730e8bc0d65ed79a68a7995 (patch) | |
tree | d61520c75252286dd4c914048efbcf6657d50036 /apps/files_sharing/css | |
parent | 46745895ae6db0efac52461497853d037230bcae (diff) | |
parent | 269f24cf9617397aaf501b27ec1af2c8e3154cf8 (diff) | |
download | nextcloud-server-0a1708ba11b5380f9730e8bc0d65ed79a68a7995.tar.gz nextcloud-server-0a1708ba11b5380f9730e8bc0d65ed79a68a7995.zip |
Merge pull request #6912 from owncloud/replace-webroot-in-css
Remove %webroot% from CSS
Diffstat (limited to 'apps/files_sharing/css')
-rw-r--r-- | apps/files_sharing/css/authenticate.css | 7 | ||||
-rw-r--r-- | apps/files_sharing/css/public.css | 19 |
2 files changed, 3 insertions, 23 deletions
diff --git a/apps/files_sharing/css/authenticate.css b/apps/files_sharing/css/authenticate.css index cebe906dd59..ef963ba7c65 100644 --- a/apps/files_sharing/css/authenticate.css +++ b/apps/files_sharing/css/authenticate.css @@ -11,16 +11,13 @@ margin: 6px; } -input[type="submit"]{ +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"] { +#body-login input[type='submit'] { position: absolute; top: 0px; } diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index 77f1c9bbcb0..6e0c6eb75b9 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -3,7 +3,7 @@ body { } #header { - background: #1d2d44 url('%webroot%/core/img/noise.png') repeat; + background-color: #1d2d44; height:32px; left:0; line-height:32px; @@ -121,23 +121,6 @@ thead{ width: 100% !important; } -#publicUploadButtonMock { - position:relative; - display:block; - width:100%; - height:32px; - cursor:pointer; - z-index:10; - background-image:url('%webroot%/core/img/actions/upload.svg'); - background-repeat:no-repeat; - background-position:7px 8px; -} - -#publicUploadButtonMock span { - margin: 0 5px 0 28px; - color: #555; -} - .directLink { margin-bottom: 20px; } |