options.acss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .share-sheet-options {
  2. display: block;
  3. height: initial;
  4. }
  5. @import "../common/index.acss";
  6. .share-sheet-options .van-share-sheet__options {
  7. position: relative;
  8. display: -webkit-flex;
  9. display: flex;
  10. padding: 16px 0 16px 8px;
  11. overflow-x: auto;
  12. overflow-y: visible;
  13. -webkit-overflow-scrolling: touch;
  14. }
  15. .share-sheet-options .van-share-sheet__options--border:before {
  16. position: absolute;
  17. box-sizing: border-box;
  18. -webkit-transform-origin: center;
  19. transform-origin: center;
  20. content: " ";
  21. pointer-events: none;
  22. top: 0;
  23. right: 0;
  24. left: 16px;
  25. border-top: 1px solid #ebedf0;
  26. -webkit-transform: scaleY(0.5);
  27. transform: scaleY(0.5);
  28. }
  29. .share-sheet-options .van-share-sheet__options::-webkit-scrollbar {
  30. height: 0;
  31. }
  32. .share-sheet-options .van-share-sheet__option {
  33. display: -webkit-flex;
  34. display: flex;
  35. -webkit-flex-direction: column;
  36. flex-direction: column;
  37. -webkit-align-items: center;
  38. align-items: center;
  39. -webkit-user-select: none;
  40. user-select: none;
  41. }
  42. .share-sheet-options .van-share-sheet__option:active {
  43. opacity: 0.7;
  44. }
  45. .share-sheet-options .van-share-sheet__button {
  46. height: auto;
  47. padding: 0;
  48. line-height: inherit;
  49. background-color: initial;
  50. border: 0;
  51. }
  52. .share-sheet-options .van-share-sheet__button:after {
  53. border: 0;
  54. }
  55. .share-sheet-options .van-share-sheet__icon {
  56. width: 48px;
  57. height: 48px;
  58. margin: 0 16px;
  59. }
  60. .share-sheet-options .van-share-sheet__name {
  61. margin-top: 8px;
  62. padding: 0 4px;
  63. color: #646566;
  64. font-size: 12px;
  65. }
  66. .share-sheet-options .van-share-sheet__option-description {
  67. padding: 0 4px;
  68. color: #c8c9cc;
  69. font-size: 12px;
  70. }