index.css 980 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .wrapper {
  2. padding: 7px;
  3. display: grid;
  4. grid-template-columns: repeat(7, 1fr);
  5. grid-template-rows: repeat(7, 30px);
  6. border-bottom: 1px solid #e8e8e8;
  7. }
  8. .normal {
  9. line-height: 24px;
  10. text-align: center;
  11. cursor: pointer;
  12. color: rgba(0, 0, 0, 0.65);
  13. margin: 3px 7px;
  14. border: 1px solid transparent;
  15. }
  16. .normal:hover {
  17. background-color: #e6f7ff;
  18. }
  19. .week:hover {
  20. background-color: #fff;
  21. cursor: default;
  22. }
  23. .next, .prev {
  24. color: rgba(0, 0, 0, 0.25);
  25. }
  26. .current {
  27. border-color: #1890ff;
  28. font-weight: bold;
  29. color: #1890ff;
  30. border-radius: 2px;
  31. }
  32. .selected {
  33. background-color: #1890ff;
  34. color: #fff;
  35. border: 1px solid transparent;
  36. font-weight: bold;
  37. border-radius: 2px;
  38. }
  39. .selected:hover {
  40. background-color: #1890ff;
  41. }
  42. .disabled {
  43. margin: 3px 0;
  44. background-color: #f5f5f5;
  45. cursor: not-allowed;
  46. color: #bcbcbc;
  47. }
  48. .disabled:hover {
  49. background-color: #f5f5f5;
  50. }
  51. .disabled.current {
  52. border: none;
  53. }
  54. .disabled.selected {
  55. color: #000;
  56. }