_informer.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .uppy-Informer {
  2. position: absolute;
  3. bottom: 0;
  4. left: 0;
  5. right: 0;
  6. text-align: center;
  7. font-size: 12px;
  8. font-weight: 500;
  9. padding: 0 15px;
  10. height: 35px;
  11. line-height: 35px;
  12. background-color: $color-black; /* no !important */
  13. color: $color-white;
  14. opacity: 1;
  15. transform: none;
  16. transition: all 300ms ease-in;
  17. z-index: $zIndex-4;
  18. .uppy-Dashboard--wide & {
  19. height: 45px;
  20. line-height: 45px;
  21. font-size: 13px;
  22. }
  23. }
  24. .uppy-Informer[aria-hidden=true] {
  25. opacity: 0;
  26. transform: translateY(200%);
  27. transition: all 300ms ease-in;
  28. }
  29. .uppy-Informer p {
  30. margin: 0;
  31. padding: 0;
  32. height: 35px;
  33. line-height: 35px;
  34. .uppy-Dashboard--wide & {
  35. height: 45px;
  36. line-height: 45px;
  37. }
  38. }
  39. .uppy-Informer span {
  40. line-height: 12px;
  41. width: 13px;
  42. height: 13px;
  43. display: inline-block;
  44. vertical-align: middle;
  45. background-color: $color-white;
  46. border-radius: 50%;
  47. position: relative;
  48. top: -1px;
  49. left: 3px;
  50. font-size: 10px;
  51. margin-left: -1px;
  52. }
  53. .uppy-Informer span:after {
  54. line-height: 1.3;
  55. word-wrap: break-word;
  56. }