trash.css 839 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright (c) 2014
  3. *
  4. * This file is licensed under the Affero General Public License version 3
  5. * or later.
  6. *
  7. * See the COPYING-README file.
  8. *
  9. */
  10. #app-content-trashbin tbody tr[data-type="file"] td a.name,
  11. #app-content-trashbin tbody tr[data-type="file"] td a.name span {
  12. cursor: default;
  13. }
  14. #app-content-trashbin .summary :last-child {
  15. padding: 0;
  16. }
  17. #app-content-trashbin #filestable .summary .filesize {
  18. display: none;
  19. }
  20. #app-navigation > ul {
  21. padding-bottom: 44px;
  22. }
  23. /* move Deleted Files to bottom of sidebar */
  24. .nav-trashbin {
  25. position: fixed !important;
  26. bottom: 44px;
  27. width: inherit !important;
  28. background-color: #fff;
  29. border-right: 1px solid #eee;
  30. }
  31. /* double padding to account for Deleted files entry, issue with Firefox */
  32. .app-files #app-navigation > ul li:nth-last-child(2) {
  33. margin-bottom: 44px;
  34. }