forked from owncloud/gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request owncloud#574 from owncloud/official-upload-support
Add uploading support for registered users
- Loading branch information
Showing
20 changed files
with
771 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,9 @@ | |
margin-right: 0 !important; | ||
} | ||
|
||
/* shorten elements for mobile */ | ||
#uploadprogressbar { | ||
width: 50px; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
/* Uploading */ | ||
.oc-dialog .fileexists .icon { | ||
background-position: center center; | ||
background-size: cover !important; | ||
} | ||
|
||
#uploadprogressbar { | ||
margin-top: 5px; | ||
} | ||
|
||
.stop.icon-close { | ||
margin-top: 5px; | ||
} | ||
|
||
.actions { | ||
float: left; | ||
} | ||
|
||
.actions input, .actions button, .actions .button { | ||
margin: 0; | ||
float: left; | ||
} | ||
|
||
.actions .button a { | ||
color: #555; | ||
} | ||
|
||
.actions .button a:hover, | ||
.actions .button a:focus, | ||
.actions .button a:active { | ||
color: #333; | ||
} | ||
|
||
.actions.creatable { | ||
position: relative; | ||
z-index: -30; | ||
} | ||
|
||
.newFileMenu { | ||
width: 140px; | ||
margin-left: -56px; | ||
margin-top: 25px; | ||
z-index: 1001; | ||
} | ||
|
||
.newFileMenu .error { | ||
color: #e9322d; | ||
border-color: #e9322d; | ||
-webkit-box-shadow: 0 0 6px #f8b9b7; | ||
-moz-box-shadow: 0 0 6px #f8b9b7; | ||
box-shadow: 0 0 6px #f8b9b7; | ||
} | ||
|
||
.newFileMenu .menuitem { | ||
white-space: nowrap; | ||
overflow: hidden; | ||
} | ||
.newFileMenu.popovermenu .menuitem .icon { | ||
margin-bottom: -2px; | ||
} | ||
.newFileMenu.popovermenu a.menuitem, | ||
.newFileMenu.popovermenu label.menuitem, | ||
.newFileMenu.popovermenu .menuitem { | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.newFileMenu.popovermenu a.menuitem.active { | ||
opacity: 1; | ||
} | ||
|
||
.newFileMenu.bubble:after { | ||
left: 75px; | ||
right: auto; | ||
} | ||
.newFileMenu.bubble:before { | ||
left: 75px; | ||
right: auto; | ||
} | ||
|
||
.newFileMenu .filenameform { | ||
display: inline-block; | ||
} | ||
|
||
.newFileMenu .filenameform input { | ||
width: 100px; | ||
} | ||
|
||
#fileList .popovermenu .action { | ||
display: block; | ||
line-height: 30px; | ||
padding-left: 5px; | ||
color: #000; | ||
padding: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.