plugin-manager.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. :root {
  2. color-scheme: light dark;
  3. font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  4. background: Canvas;
  5. color: CanvasText;
  6. }
  7. body {
  8. margin: 0;
  9. }
  10. main {
  11. max-width: 680px;
  12. margin: 0 auto;
  13. padding: 32px;
  14. }
  15. header,
  16. .install-row,
  17. li {
  18. display: flex;
  19. align-items: center;
  20. gap: 12px;
  21. }
  22. header {
  23. justify-content: space-between;
  24. }
  25. h1,
  26. h2,
  27. p {
  28. margin-top: 0;
  29. }
  30. header p {
  31. color: GrayText;
  32. }
  33. form,
  34. section {
  35. margin-top: 28px;
  36. }
  37. label {
  38. display: block;
  39. margin-bottom: 8px;
  40. font-weight: 600;
  41. }
  42. input {
  43. flex: 1;
  44. min-width: 0;
  45. padding: 9px 11px;
  46. border: 1px solid ButtonBorder;
  47. border-radius: 7px;
  48. background: Field;
  49. color: FieldText;
  50. }
  51. button {
  52. padding: 9px 14px;
  53. border: 1px solid ButtonBorder;
  54. border-radius: 7px;
  55. background: AccentColor;
  56. color: AccentColorText;
  57. cursor: pointer;
  58. }
  59. button.quiet,
  60. li button {
  61. background: ButtonFace;
  62. color: ButtonText;
  63. }
  64. button:disabled,
  65. input:disabled {
  66. opacity: 0.55;
  67. cursor: wait;
  68. }
  69. #status {
  70. min-height: 1.5em;
  71. margin-top: 16px;
  72. color: GrayText;
  73. }
  74. ul {
  75. margin: 0;
  76. padding: 0;
  77. list-style: none;
  78. }
  79. li {
  80. justify-content: space-between;
  81. padding: 12px 0;
  82. border-bottom: 1px solid ButtonBorder;
  83. }
  84. .package-version {
  85. color: GrayText;
  86. margin-left: 8px;
  87. }
  88. .package-actions {
  89. display: flex;
  90. gap: 8px;
  91. }