uploadify.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. ?>
  3. /*
  4. Uploadify v3.1.0
  5. Copyright (c) 2012 Reactive Apps, Ronnie Garcia
  6. Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
  7. */
  8. #uploadify-button-wrapper.uploadify{
  9. display: inline-block;
  10. position: relative;
  11. background: url(<?php echo elgg_get_site_url(); ?>_graphics/button_background.gif) repeat-x scroll 0 0 #CCCCCC;
  12. border: 1px solid #999999;
  13. border-radius: 5px 5px 5px 5px;
  14. box-shadow: none;
  15. color: #333333;
  16. cursor: pointer;
  17. font-weight: bold;
  18. text-align: center;
  19. text-decoration: none;
  20. text-shadow: 0 1px 0 white;
  21. font-size: 14px;
  22. }
  23. #uploadify-button-wrapper .swfupload {
  24. left: 0;
  25. }
  26. .uploadify-queue-item {
  27. background-color: #EEEEEE;
  28. border: 1px solid #CCCCCC;
  29. -webkit-border-radius: 3px;
  30. -moz-border-radius: 3px;
  31. border-radius: 3px;
  32. font: 11px Verdana, Geneva, sans-serif;
  33. margin-top: 5px;
  34. max-width: 350px;
  35. padding: 10px;
  36. }
  37. .uploadify-error {
  38. background-color: #FDE5DD !important;
  39. }
  40. .uploadify-queue-item .cancel a {
  41. background: transparent url(<?php echo elgg_get_site_url(); ?>_graphics/elgg_sprites.png) no-repeat 0 -234px;
  42. width: 16px;
  43. height: 16px;
  44. margin: 0 2px;
  45. float: right;
  46. text-indent: -9999px;
  47. }
  48. .uploadify-queue-item .cancel a:hover {
  49. background-position: 0 -216px;
  50. }
  51. .uploadify-queue-item.completed {
  52. background-color: #E5E5E5;
  53. }
  54. .uploadify-progress {
  55. background-color: #E5E5E5;
  56. margin-top: 10px;
  57. width: 100%;
  58. }
  59. .uploadify-progress-bar {
  60. background-color: #0099FF;
  61. height: 3px;
  62. width: 1px;
  63. }