page7.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .page-health-check {
  2. display: flex;
  3. flex-direction: column;
  4. gap: 12px;
  5. overflow: hidden;
  6. }
  7. .page-health-check .check-actions {
  8. display: flex;
  9. gap: 8px;
  10. flex-shrink: 0;
  11. }
  12. .page-health-check .check-table {
  13. flex: 1;
  14. min-height: 0;
  15. display: flex;
  16. flex-direction: column;
  17. overflow: auto;
  18. border: 1px solid rgba(148,163,184,0.15);
  19. border-radius: 4px;
  20. }
  21. .page-health-check .check-row {
  22. display: grid;
  23. grid-template-columns: 1fr 1fr 1fr 2fr;
  24. min-height: 42px;
  25. border-bottom: 1px solid rgba(148,163,184,0.12);
  26. flex-shrink: 0;
  27. }
  28. .page-health-check .check-row:last-child {
  29. border-bottom: none;
  30. }
  31. .page-health-check .check-row > div {
  32. display: flex;
  33. align-items: center;
  34. padding: 8px 12px;
  35. min-width: 0;
  36. border-right: 1px solid rgba(148,163,184,0.12);
  37. font-size: 14px;
  38. }
  39. .page-health-check .check-row > div:last-child {
  40. border-right: none;
  41. }
  42. .page-health-check .check-header {
  43. min-height: 40px;
  44. background: linear-gradient(180deg, #0f172a, #0b1220);
  45. font-weight: 500;
  46. flex-shrink: 0;
  47. }
  48. .page-health-check .check-group-divider {
  49. height:32px;
  50. display:flex;
  51. align-items:center;
  52. padding:0 12px;
  53. background:rgba(148,163,184,0.06);
  54. border-top:1px solid rgba(148,163,184,0.10);
  55. border-bottom:1px solid rgba(148,163,184,0.10);
  56. color:#94a3b8;
  57. font-size:14px;
  58. font-weight:500;
  59. }