006username

Untitled

Jun 25th, 2025
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. /* Make the infoContainer taller, with better spacing */
  2. #infoContainer {
  3. padding: 20px 32px !important;
  4. min-height: 60px !important;
  5. display: flex !important;
  6. flex-direction: column !important;
  7. justify-content: left !important;
  8. gap: 8px !important;
  9. border-radius: 16px !important;
  10.  
  11. }
  12.  
  13.  
  14. #commonDialog {
  15. min-width: 400px !important;
  16. max-width: 700px !important;
  17. overflow: visible !important;
  18. margin: 0 !important;
  19.  
  20.  
  21. border-radius: 16px !important;
  22.  
  23.  
  24. backdrop-filter: blur(16px) !important;
  25. -webkit-backdrop-filter: blur(16px) !important;
  26.  
  27. box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
  28.  
  29. background-color: rgba(30, 30, 30, 0.3) !important;
  30. color: white !important;
  31. border: 1px solid rgba(255, 255, 255, 0.1) !important;
  32.  
  33.  
  34. }
  35.  
  36. #dialogGrid {
  37. display: flex !important;
  38. flex-direction: column !important;
  39. padding-bottom: 50px !important; /* Give space below for buttons */
  40. }
  41.  
  42.  
  43. #commonDialog .dialog-button-box {
  44. margin-top: 16px !important;
  45. display: flex !important;
  46. justify-content: center !important;
  47. gap: 12px !important;
  48. }
  49.  
  50. .commonDialog .dialog-button-box button {
  51. padding: 6px 16px !important;
  52. font-size: 14px !important;
  53. border-radius: 6px !important;
  54. appearance: none !important;
  55. background-color: rgba(255, 255, 255, 0.06) !important;
  56. color: #f0f0f0 !important;
  57.  
  58. border: 1px solid rgba(255, 255, 255, 0.1) !important;
  59. border-radius: 16px !important;
  60.  
  61.  
  62.  
  63. font-size: 13.5px !important;
  64. font-weight: 500 !important;
  65. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  66.  
  67. box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05),
  68. 0 1px 4px rgba(0, 0, 0, 0.6) !important;
  69.  
  70. transition: background 0.2s ease, border 0.2s ease;
  71. }
  72.  
  73.  
  74. .dialog-button-box button:hover,
  75. .dialog-button-box button:focus {
  76. background-color: rgba(255, 255, 255, 0.12) !important;
  77. border-color: rgba(255, 255, 255, 0.2) !important;
  78. outline: none !important;
  79. }
  80.  
  81.  
  82. .dialogBox {
  83. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  84. font-size: 14px !important;
  85. letter-spacing: 0.2px !important;
  86. }
  87.  
  88. .dialog-button-box button.default {
  89. background-color: #0a84ff !important;
  90. color: white !important;
  91. border: none !important;
  92. box-shadow: 0 0 0 2px rgba(10, 132, 255, 0.4) !important;
  93. }
  94.  
  95. .dialog-button-box button:first-of-type {
  96. background-color: #006edc !important;
  97. }
  98.  
  99.  
  100.  
Add Comment
Please, Sign In to add comment