admin.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* The contents of this file are subject to the Mozilla Public
  2. * License Version 1.1 (the "License"); you may not use this file
  3. * except in compliance with the License. You may obtain a copy of
  4. * the License at http://www.mozilla.org/MPL/
  5. *
  6. * Software distributed under the License is distributed on an "AS
  7. * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  8. * implied. See the License for the specific language governing
  9. * rights and limitations under the License.
  10. *
  11. * The Original Code is the Bugzilla Bug Tracking System.
  12. *
  13. * Contributor(s): Marc Schumann <wurblzap@gmail.com>
  14. */
  15. .warningmessages, .criticalmessages {
  16. background-color: white;
  17. border-style: solid;
  18. border-width: 1px;
  19. padding: 1ex 1ex 1ex 4ex;
  20. margin: 1ex;
  21. }
  22. .warningmessages {
  23. border-color: yellow;
  24. }
  25. .criticalmessages {
  26. border-color: red;
  27. }
  28. .alert {
  29. color: red;
  30. background-color: inherit;
  31. }
  32. p.areyoureallyreallysure {
  33. color: red;
  34. font-size: 120%;
  35. font-weight: bold;
  36. }
  37. tr.param_disabled {
  38. background-color: lightgrey;
  39. }
  40. td.admin_links {
  41. width: 50%;
  42. padding: 1em;
  43. vertical-align: top;
  44. }
  45. td.admin_links dt {
  46. margin-top: 1em;
  47. }
  48. td.admin_links dt.forbidden, td.admin_links dd.forbidden {
  49. font-size: smaller;
  50. font-style: italic;
  51. color: #aaa;
  52. }
  53. td.admin_links dt.forbidden a, td.admin_links dd.forbidden a {
  54. text-decoration: none;
  55. color: inherit;
  56. cursor: default;
  57. }
  58. .col-header {
  59. width: 8em;
  60. }
  61. .checkbox-cell {
  62. border: 1px black solid;
  63. }
  64. /* Grey-green color */
  65. .open-status {
  66. color: #286;
  67. }
  68. /* Brown-red color */
  69. .closed-status {
  70. color: #a63;
  71. }
  72. /* Dark green color */
  73. .checked {
  74. background-color: #5b4;
  75. }
  76. /* Dark red color */
  77. td.forbidden {
  78. background-color: #811;
  79. }
  80. /* Light green color */
  81. td.set {
  82. background-color: #efe;
  83. }
  84. /* Light red color */
  85. td.unset {
  86. background-color: #fee;
  87. }
  88. tr.highlight:hover {
  89. background-color: yellow;
  90. }
  91. th.title {
  92. font-size: larger;
  93. text-align: center;
  94. vertical-align: middle;
  95. }