app.scss 790 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .uploaded-files {
  2. background: rgba(240, 238, 238, 0.35);
  3. padding: 10px;
  4. margin-top: 10px;
  5. border-radius: 5px;
  6. h5 {
  7. margin: 0;
  8. font-size: 15px;
  9. color: rgb(114, 114, 114);
  10. font-weight: 500;
  11. }
  12. ol {
  13. color: rgb(55, 55, 55);
  14. margin: 0;
  15. padding-left: 18px;
  16. li {
  17. font-size: 15px;
  18. padding-top: 10px;
  19. word-break: break-all;
  20. a {
  21. color: rgb(34, 117, 215);
  22. &:hover {
  23. color: rgb(34, 117, 215);
  24. border-bottom: 1px solid rgb(34, 117, 215);
  25. }
  26. }
  27. }
  28. }
  29. }
  30. // Prettier progress bar
  31. .uppy-ProgressBar-inner {
  32. box-shadow: none !important;
  33. }
  34. // Prettier focus for the 'Choose files' button
  35. .uppy-FileInput-btn:focus {
  36. outline: none;
  37. box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
  38. }