You are here

image_fupload-style.css in Image FUpload 6.2

Same filename and directory in other branches
  1. 6.3 image_fupload-style.css
  2. 6 image_fupload-style.css
/* Progress Bar Settings */

#fsUploadProgress .progressContainer {
  background-color: #F7F7F7;
  border: 1px solid #E8E8E8;
  margin: 5px;
  overflow: hidden;
  padding: 4px;
}

#fsUploadProgress .blue {
  background-color: #F0F5FF;
  border: 1px solid #CEE2F2;
}

.progressBarInProgress, .progressBarError {
  width: 0%;
  height: 1em;  
  background-color: #0072B9;
  border-bottom: 0.5em solid #004A73;  
}

.progressBarComplete {
  width: 100%;
  height: 1em;
  background-color: #A2E379;
  border-bottom: 0.5em solid #79D841;  
}

/* Hide special buttons (Process queued images & Delete queued images) to prevent misunderstandings; nevertheless, buttons are used by AJAX*/

#edit-node-create, #edit-delete-queue {
  display: none;
}

File

image_fupload-style.css
View source
  1. /* Progress Bar Settings */
  2. #fsUploadProgress .progressContainer {
  3. background-color: #F7F7F7;
  4. border: 1px solid #E8E8E8;
  5. margin: 5px;
  6. overflow: hidden;
  7. padding: 4px;
  8. }
  9. #fsUploadProgress .blue {
  10. background-color: #F0F5FF;
  11. border: 1px solid #CEE2F2;
  12. }
  13. .progressBarInProgress, .progressBarError {
  14. width: 0%;
  15. height: 1em;
  16. background-color: #0072B9;
  17. border-bottom: 0.5em solid #004A73;
  18. }
  19. .progressBarComplete {
  20. width: 100%;
  21. height: 1em;
  22. background-color: #A2E379;
  23. border-bottom: 0.5em solid #79D841;
  24. }
  25. /* Hide special buttons (Process queued images & Delete queued images) to prevent misunderstandings; nevertheless, buttons are used by AJAX*/
  26. #edit-node-create, #edit-delete-queue {
  27. display: none;
  28. }