side-bar-item.wxss 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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-side-bar-item {
  29. display: flex;
  30. align-items: center;
  31. justify-content: center;
  32. position: relative;
  33. padding: 32rpx;
  34. font-size: var(--td-side-bar-font-size, 32rpx);
  35. color: var(--td-side-bar-color, var(--td-font-gray-1, rgba(0, 0, 0, 0.9)));
  36. background: var(--td-side-bar-bg-color, var(--td-gray-color-1, #f3f3f3));
  37. min-height: var(--td-side-bar-item-height, 112rpx);
  38. box-sizing: border-box;
  39. white-space: wrap;
  40. line-height: var(--td-side-bar-item-line-height, 48rpx);
  41. }
  42. .t-side-bar-item--active {
  43. font-weight: 600;
  44. background: var(--td-bg-color-block, #fff);
  45. color: var(--td-side-bar-active-color, var(--td-primary-color, #0052d9));
  46. }
  47. .t-side-bar-item__icon {
  48. font-size: var(--td-side-bar-icon-size, 40rpx);
  49. margin-right: 4rpx;
  50. }
  51. .t-side-bar-item__prefix,
  52. .t-side-bar-item__suffix {
  53. z-index: 1;
  54. position: absolute;
  55. right: 0;
  56. width: calc(var(--td-side-bar-border-radius, 18rpx) * 2);
  57. height: calc(var(--td-side-bar-border-radius, 18rpx) * 2);
  58. background: #fff;
  59. }
  60. .t-side-bar-item__prefix::after,
  61. .t-side-bar-item__suffix::after {
  62. content: '';
  63. display: block;
  64. width: 100%;
  65. height: 100%;
  66. background-color: var(--td-side-bar-bg-color, var(--td-gray-color-1, #f3f3f3));
  67. }
  68. .t-side-bar-item__prefix {
  69. top: calc(var(--td-side-bar-border-radius, 18rpx) * -2);
  70. }
  71. .t-side-bar-item__prefix::after {
  72. border-bottom-right-radius: var(--td-side-bar-border-radius, 18rpx);
  73. }
  74. .t-side-bar-item__suffix {
  75. bottom: calc(var(--td-side-bar-border-radius, 18rpx) * -2);
  76. }
  77. .t-side-bar-item__suffix::after {
  78. border-top-right-radius: var(--td-side-bar-border-radius, 18rpx);
  79. }
  80. .t-side-bar-item--disabled {
  81. color: var(--td-side-bar-disabled-color, var(--td-font-gray-4, rgba(0, 0, 0, 0.26)));
  82. }
  83. .t-side-bar-item__line {
  84. width: 6rpx;
  85. height: 28rpx;
  86. position: absolute;
  87. left: 0;
  88. top: 50%;
  89. transform: translateY(-50%);
  90. background: var(--td-side-bar-active-color, var(--td-primary-color, #0052d9));
  91. border-radius: 8rpx;
  92. }