index.acss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. @import "../common/index.acss";
  2. .van-share-sheet__header {
  3. padding: 12px 16px 4px;
  4. text-align: center;
  5. }
  6. .van-share-sheet__title {
  7. margin-top: 8px;
  8. color: #323233;
  9. font-weight: 400;
  10. font-size: 14px;
  11. line-height: 20px;
  12. }
  13. .van-share-sheet__title:empty,
  14. .van-share-sheet__title:not(:empty) + .van-share-sheet__title {
  15. display: none;
  16. }
  17. .van-share-sheet__description {
  18. display: block;
  19. margin-top: 8px;
  20. color: #969799;
  21. font-size: 12px;
  22. line-height: 16px;
  23. }
  24. .van-share-sheet__description:empty,
  25. .van-share-sheet__description:not(:empty) + .van-share-sheet__description {
  26. display: none;
  27. }
  28. .van-share-sheet__cancel {
  29. display: block;
  30. box-sizing: initial;
  31. width: 100%;
  32. height: auto;
  33. padding: 0;
  34. font-size: 16px;
  35. line-height: 48px;
  36. text-align: center;
  37. background: #fff;
  38. border: none;
  39. }
  40. .van-share-sheet__cancel:before {
  41. display: block;
  42. height: 8px;
  43. background-color: #f7f8fa;
  44. content: " ";
  45. }
  46. .van-share-sheet__cancel:after {
  47. display: none;
  48. }
  49. .van-share-sheet__cancel:active {
  50. background-color: #f2f3f5;
  51. }