_file-insertion.less 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // /**
  2. // * Copyright © Magento, Inc. All rights reserved.
  3. // * See COPYING.txt for license details.
  4. // */
  5. //
  6. // Block 'Insert File'
  7. // _________________________________________
  8. .contents-uploader {
  9. margin: 0 0 @indent__base;
  10. .fileinput-button {
  11. cursor: pointer;
  12. display: inline-block;
  13. float: none;
  14. vertical-align: middle;
  15. span {
  16. font-weight: 600;
  17. padding-right: 1em;
  18. }
  19. input {
  20. -moz-transform: none;
  21. border: none;
  22. opacity: 1;
  23. position: static;
  24. transform: none;
  25. }
  26. }
  27. }
  28. .file-row {
  29. border: 1px solid @color-gray68;
  30. margin: @indent__xs 0;
  31. padding: 2px;
  32. }
  33. .filecnt {
  34. border: 1px solid @color-gray68;
  35. cursor: pointer;
  36. display: inline-block;
  37. margin: 0 @indent__xs 15px 0;
  38. overflow: hidden;
  39. padding: 3px;
  40. text-overflow: ellipsis;
  41. width: 100px;
  42. &.selected {
  43. border-color: @color-blue-dodger;
  44. }
  45. p {
  46. text-align: center;
  47. }
  48. }