储能智慧云小程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

picker-item.wxss 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. :host {
  29. display: flex;
  30. }
  31. .t-picker-item__group {
  32. height: var(--td-picker-group-height, 400rpx);
  33. overflow: hidden;
  34. flex: 1;
  35. z-index: 1;
  36. }
  37. .t-picker-item__wrapper {
  38. padding: 144rpx 0;
  39. }
  40. .t-picker-item__item {
  41. display: flex;
  42. justify-content: center;
  43. align-items: center;
  44. white-space: nowrap;
  45. text-overflow: ellipsis;
  46. overflow: hidden;
  47. color: var(--td-picker-item-color, var(--td-text-color-secondary, var(--td-font-gray-2, rgba(0, 0, 0, 0.6))));
  48. font-size: var(--td-picker-item-font-size, var(--td-font-size-m, 32rpx));
  49. }
  50. .t-picker-item__item--active {
  51. color: var(--td-picker-item-active-color, var(--td-text-color-primary, var(--td-font-gray-1, rgba(0, 0, 0, 0.9))));
  52. font-weight: 600;
  53. }