aboutSupport.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. html {
  5. --aboutSupport-table-background: #ebebeb;
  6. background-color: var(--in-content-page-background);
  7. }
  8. body {
  9. margin: 40px 48px;
  10. }
  11. .page-subtitle {
  12. margin-bottom: 3em;
  13. }
  14. .major-section {
  15. margin-top: 2em;
  16. margin-bottom: 1em;
  17. font-size: large;
  18. text-align: start;
  19. font-weight: bold;
  20. }
  21. button {
  22. margin-inline-start: 0;
  23. margin-inline-end: 8px;
  24. }
  25. table {
  26. background-color: var(--aboutSupport-table-background);
  27. color: var(--in-content-text-color);
  28. font: message-box;
  29. text-align: start;
  30. width: 100%;
  31. border: 1px solid var(--in-content-border-color);
  32. border-spacing: 0px;
  33. }
  34. th, td {
  35. border: 1px solid var(--in-content-border-color);
  36. padding: 4px;
  37. }
  38. thead th {
  39. text-align: center;
  40. }
  41. th {
  42. text-align: start;
  43. background-color: var(--in-content-table-header-background);
  44. color: var(--in-content-selected-text);
  45. }
  46. th.title-column {
  47. white-space: nowrap;
  48. width: 0px;
  49. font-size: medium;
  50. }
  51. th.column {
  52. white-space: nowrap;
  53. width: 0px;
  54. }
  55. td {
  56. text-align: start;
  57. border-color: var(--in-content-table-border-dark-color);
  58. }
  59. .prefs-table {
  60. width: 100%;
  61. table-layout: fixed;
  62. }
  63. .pref-name {
  64. width: 70%;
  65. white-space: nowrap;
  66. overflow: hidden;
  67. }
  68. .pref-value {
  69. width: 30%;
  70. white-space: nowrap;
  71. overflow: hidden;
  72. }
  73. #action-box {
  74. background-color: var(--aboutSupport-table-background);
  75. border: 1px solid var(--in-content-border-color);
  76. color: var(--in-content-text-color);
  77. float: right;
  78. margin-top: 2em;
  79. margin-bottom: 20px;
  80. margin-inline-start: 20px;
  81. margin-inline-end: 0;
  82. padding: 16px;
  83. width: 30%;
  84. }
  85. #contents {
  86. clear: right;
  87. }
  88. #action-box,
  89. #reset-box,
  90. #safe-mode-box {
  91. display: none;
  92. }
  93. #action-box:dir(rtl) {
  94. float: left;
  95. }
  96. #reset-box > h3 {
  97. margin-top: 0;
  98. }
  99. #action-box button {
  100. display: block;
  101. }
  102. #verify-place-result {
  103. max-height: 200px;
  104. overflow: auto;
  105. }
  106. .block {
  107. display: block;
  108. }
  109. .hidden {
  110. display: none;
  111. }