button-group.wxss 746 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .t-float-left {
  2. float: left;
  3. }
  4. .t-float-right {
  5. float: right;
  6. }
  7. @keyframes tdesign-fade-out {
  8. from {
  9. opacity: 1;
  10. }
  11. to {
  12. opacity: 0;
  13. }
  14. }
  15. .hotspot-expanded.relative {
  16. position: relative;
  17. }
  18. .hotspot-expanded::after {
  19. content: '';
  20. display: block;
  21. position: absolute;
  22. left: 0;
  23. top: 0;
  24. right: 0;
  25. bottom: 0;
  26. transform: scale(1.5);
  27. }
  28. .t-button-group {
  29. display: inline-flex;
  30. width: 100%;
  31. background: #fff;
  32. }
  33. .t-button-group--menu t-button:not(:first-child)::before {
  34. position: absolute;
  35. top: 20px/2;
  36. height: 24px;
  37. left: 0;
  38. content: '';
  39. width: 0;
  40. border-left: solid #e6e6e6 1px;
  41. }
  42. .t-button-group t-button {
  43. flex: 1;
  44. /* stylelint-disable-next-line */
  45. -webkit-flex: 1;
  46. position: relative;
  47. }