IndexPage.css 988 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. @media (max-width: 768px) {
  2. .index-page .content-area {
  3. padding: 12px;
  4. padding-top: 64px;
  5. }
  6. }
  7. .index-page .action {
  8. cursor: pointer;
  9. justify-content: center;
  10. max-width: 100%;
  11. flex-wrap: nowrap;
  12. }
  13. .index-page .action > span:not(.anticon):not(.tg-icon) {
  14. white-space: nowrap;
  15. overflow: hidden;
  16. text-overflow: ellipsis;
  17. min-width: 0;
  18. }
  19. .index-page .action-update {
  20. color: var(--ant-color-warning);
  21. font-weight: 600;
  22. }
  23. .index-page .action-update .anticon {
  24. color: var(--ant-color-warning);
  25. }
  26. .index-page .history-tag {
  27. cursor: pointer;
  28. display: inline-flex;
  29. align-items: center;
  30. gap: 4px;
  31. margin-inline-end: 0;
  32. }
  33. .index-page .tg-icon {
  34. display: inline-block;
  35. vertical-align: -2px;
  36. }
  37. .index-page .ip-toggle-icon {
  38. cursor: pointer;
  39. font-size: 16px;
  40. }
  41. .index-page .ip-hidden .ant-statistic-content-value {
  42. filter: blur(6px);
  43. transition: filter 0.2s ease;
  44. }
  45. .index-page .ip-visible .ant-statistic-content-value {
  46. filter: none;
  47. }