_localfile.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .local-file-open-panel {
  2. position: relative;
  3. & > h2 {
  4. &:before {
  5. content: ' ';
  6. display: block;
  7. width: 25px;
  8. height: 25px;
  9. position: absolute;
  10. left: 0;
  11. background: url(../images/icons.png) no-repeat 0 -495px;
  12. }
  13. }
  14. .pick-file {
  15. padding: 10px 0;
  16. a {
  17. .button;
  18. margin: 0 10px 10px 0;
  19. }
  20. span {
  21. line-height: 30px;
  22. }
  23. }
  24. .drop-file {
  25. border: 2px dashed #eee;
  26. border-radius: 4px;
  27. height: 100px;
  28. width: 100px;
  29. text-align: center;
  30. font-size: 16px;
  31. color: #CCC;
  32. margin: 150px auto;
  33. transition: all .1s ease;
  34. span {
  35. display: block;
  36. margin-top: 25px;
  37. padding: 0 15px;
  38. }
  39. &.accept {
  40. border-color: lighten(@tab-active, 40%);
  41. transform: scale(1.2);
  42. }
  43. &.deny {
  44. border-color: #eee;
  45. color: #eee;
  46. }
  47. }
  48. }