_fileupload.scss 485 B

12345678910111213141516171819202122232425262728293031
  1. // FILE UPLOAD
  2. // -----------------------------------------------------------------------------
  3. .fileupload {
  4. .uneditable-input {
  5. .fa {
  6. position: absolute;
  7. top: 12px;
  8. }
  9. .fileupload-preview {
  10. display: inline-block;
  11. float: left;
  12. overflow: hidden;
  13. padding: 0 0 0 17px;
  14. text-overflow: ellipsis;
  15. width: 100%;
  16. }
  17. }
  18. .btn {
  19. border-radius: 0;
  20. }
  21. }
  22. @media only screen and (max-width: 479px) {
  23. .fileupload {
  24. .uneditable-input {
  25. width: 170px;
  26. }
  27. }
  28. }