aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/css
Commit message (Collapse)AuthorAgeFilesLines
* Fix regression of button at public download pageMorris Jobke2015-07-061-1/+1
| | | | * introduced with #17159
* federated cloud ID: add icons, fix HTML & layout, fix wordingJan-Christoph Borchardt2015-06-171-0/+29
|
* add social media button for diaspora, twitter, facebook and google+Bjoern Schiessle2015-06-172-0/+52
|
* Restore min-height for single previewsOlivier Paroz2015-05-201-0/+1
|
* Remove overflow+watermarkOlivier Paroz2015-04-231-9/+3
|
* An idea to suggest that this is just a sample of the full textOlivier Paroz2015-04-231-0/+11
|
* Show a text preview instead of a bitmap preview of textOlivier Paroz2015-04-231-1/+16
| | | | + fix the preview height
* fix multiselect bar offset on shared pageJan-Christoph Borchardt2014-08-191-1/+2
|
* Quick fix for #9119. Increase preview to keep empty message more centered ↵Remco Brenninkmeijer2014-07-301-1/+1
| | | | and push footer down.
* move public page footer rules from sharing app to core so it is used by ↵Jan-Christoph Borchardt2014-07-071-16/+0
| | | | other apps too
* IE8 fixesMorris Jobke2014-07-041-1/+10
|
* use icon-confirm instead of text for accepting remote share, works better ↵Jan-Christoph Borchardt2014-07-041-5/+23
| | | | with translations
* Merge pull request #9391 from owncloud/design-mobile-shareJan-Christoph Borchardt2014-07-031-0/+5
|\ | | | | Fix mobile share view glitches
| * hide text of download button, only show iconJan-Christoph Borchardt2014-07-021-0/+5
| |
* | fix lineheight of server2server shareVolkan Gezer2014-07-021-1/+0
|/
* drop unneeded codeMorris Jobke2014-06-271-14/+0
|
* Merge pull request #8399 from owncloud/server-server-sharingicewind19912014-06-171-0/+35
|\ | | | | Add server<->server sharing
| * fix broken buttons for IE8-11Morris Jobke2014-06-171-0/+1
| |
| * fixing layout issue - mostly alignmentMorris Jobke2014-06-171-0/+20
| |
| * Add interface for adding a public share to a different ownCloud instanceRobin Appelman2014-06-141-0/+14
| |
* | fix layout of password protected sharesMorris Jobke2014-06-131-0/+8
|/ | | | | * add password icon * fix upshifted arrow button - fixes #9024
* move mail template editor from core to standalone templateeditor repoJörn Friedrich Dreyer2014-06-131-33/+0
|
* Merge pull request #8824 from owncloud/mail_template_editing_in_webuiMorris Jobke2014-06-041-0/+33
|\ | | | | minimal mail template editor for administrators
| * convert mail template editor to app framework for a restful apiJörn Friedrich Dreyer2014-06-031-1/+1
| |
| * minimal mail template editor for administrators, refs #7177Jörn Friedrich Dreyer2014-06-021-0/+33
| |
* | infield label removal: remove last occurences of infield labelsJan-Christoph Borchardt2014-06-031-7/+0
|/
* Added sharing overview page (WIP)Vincent Petry2014-05-301-0/+3
| | | | | - added sharing overview entries in the sidebar - use OCS Share API to get the list of files
* Show less whitespace above publicly shared imagesRobin Appelman2014-05-231-7/+0
|
* Fixed many issues, clean upVincent Petry2014-05-151-8/+0
| | | | | | | | | | | | | | | - fixed upload and storage statistics - fixed infinite scroll to use the correct contain for scroll detection - fixed unit test that sometimes fail for rename case - controls are now sticky again - fixed selection overlay to be aligned with the table - fixed "select all" checkbox that had id conflicts - fixed public page - fixed global actions permissions detection - fix when URL contains an invalid view id - viewer mode now hides the sidebar (ex: text editor) - added unit tests for trashbin - clean up storage info in template (most is retrieved via ajax call now)
* Namespacing for FileList, FileActions and trashbin appVincent Petry2014-05-151-0/+4
| | | | | | | | | | | | | | | | | - FileList is now an instantiable class - FileActions is now in namespace - added App class for trashbin app - moved trashbin overrides into classes extending FileList - replaced many static calls with "this." or "self." to make the classes reusable/extendable - new URL parameter "view" to specify which view is shown, for example "files" or "trashbin" - added OC.Util.History utility class in core for handling history - moved URL handling/routing to OCA.Files.App - popstate will correctly update the current view and notify the view of the URL change so it can update the current dir - added JS unitt tests for the trashbin app - fixed public app to work with the new namespaces
* fix position and look of public download buttonJan-Christoph Borchardt2014-05-021-3/+0
|
* Merge pull request #8255 from owncloud/fix-public-download-buttonRaghu Nayyar2014-04-221-0/+13
|\ | | | | keep long file names in one line to not overflow download button on mobile
| * keep long file names in one line to not overflow download button on mobileJan-Christoph Borchardt2014-04-171-0/+13
| |
* | Merge pull request #8239 from owncloud/directlink-overflowThomas Müller2014-04-221-0/+1
|\ \ | |/ |/| add max-width to directLink input to prevent overflow
| * add max-width to directLink input to prevent overflowJan-Christoph Borchardt2014-04-161-0/+1
| |
* | fix header code duplication, code style fixesJan-Christoph Borchardt2014-04-161-16/+0
| |
* | remove duplication of 'header-right' element, also make it overflow when too ↵Jan-Christoph Borchardt2014-04-161-13/+0
|/ | | | wide
* Files, trashbin, public apps use ajax/JSON for the file listVincent Petry2014-04-021-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Files app: - removed file list template, now rendering list from JSON response - FileList.addFile/addDir is now FileList.add() and takes a JS map with all required arguments instead of having a long number of function arguments - added unit tests for many FileList operations - fixed newfile.php, newfolder.php and rename.php to return the file's full JSON on success - removed obsolete/unused undo code - removed download_url / loading options, now using Files.getDownloadUrl() for that - server side now uses Helper::getFileInfo() to prepare file JSON response - previews are now client-side only Breadcrumbs are now JS only: - Added BreadCrumb class to handle breadcrumb rendering and events - Added unit test for BreadCrumb class - Moved all relevant JS functions to the BreadCrumb class Public page now uses ajax to load the file list: - Added Helper class in sharing app to make it easier to authenticate and retrieve the file's real path - Added ajax/list.php to retrieve the file list - Fixed FileActions and FileList to work with the ajax list Core: - Fixed file picker dialog to use the same list format as files app
* change mobile breakpoint for shared view to 768px as wellJan-Christoph Borchardt2014-03-261-1/+1
|
* adding ellipsis on file names to public file list as wellThomas Müller2014-03-261-0/+8
|
* Consolidate two sections, per code review. Issue #1648Matthew Caron2014-02-171-6/+2
|
* Fit shared videos to viewer, just like images. Issue #1648Matthew Caron2014-02-141-0/+7
|
* make header scroll up for single shares, more view of content on small screensJan-Christoph Borchardt2014-01-291-0/+4
|
* adjust file type icon placement for when no preview can be generatedJan-Christoph Borchardt2014-01-292-0/+9
|
* permanently show download action on mobile, only iconJan-Christoph Borchardt2014-01-291-6/+17
|
* fix horizontal scrollbar appearing when footer is too long, footer wraps nowJan-Christoph Borchardt2014-01-291-2/+1
|
* merge master into mobile-styleJan-Christoph Borchardt2014-01-292-10/+7
|\
| * Merge pull request #6912 from owncloud/replace-webroot-in-cssMorris Jobke2014-01-272-23/+3
| |\ | | | | | | Remove %webroot% from CSS
| | * remove %webroot from files_sharing appJan-Christoph Borchardt2014-01-232-23/+3
| | |
| * | Merge pull request #5153 from owncloud/core-em-to-pxJan-Christoph Borchardt2014-01-271-8/+8
| |\ \ | | | | | | | | Cleans up Core apps for relative(em) to absolute(px) styles.