index.less 950 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // @import "~@less/mixin.less";
  2. .del-box{
  3. position: absolute;
  4. width: 206px;
  5. height: 106px;
  6. box-shadow: 2px 2px 5px rgba(0,0,0,.4);
  7. background: #fff;
  8. z-index: 66;
  9. text-align: center;
  10. padding: 20px;
  11. right: -30px;
  12. top: 40px;
  13. }
  14. .del-con{
  15. position: relative;
  16. .del-tri{
  17. width: 0;
  18. height: 0;
  19. border-width: 10px;
  20. border-style: solid;
  21. border-color: transparent transparent #fff transparent;
  22. position: absolute;
  23. top: -40px;
  24. right: 10px;
  25. }
  26. .del-title{
  27. margin-bottom: 19px;
  28. white-space: nowrap;
  29. text-overflow: ellipsis;
  30. overflow: hidden;
  31. }
  32. .del-foot{
  33. .del-btn{
  34. display: inline-block;
  35. width: 63px;
  36. height: 26px;
  37. line-height: 26px;
  38. text-align: center;
  39. cursor: pointer;
  40. }
  41. .del-del{
  42. color: #fff;
  43. background: #EC3E3E;
  44. margin: 0 20px 0 10px;
  45. }
  46. .del-cancel{
  47. color:#000;
  48. background: #E5E5E5;
  49. }
  50. }
  51. }