editusers.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. table.main {
  16. border-spacing: 1em;
  17. }
  18. table.main tr {
  19. vertical-align: top;
  20. border-top: solid thin black;
  21. }
  22. table.main th {
  23. text-align: right;
  24. white-space: nowrap;
  25. }
  26. table.main th,
  27. table.main td {
  28. padding: 0;
  29. }
  30. table.main ul {
  31. list-style-type: none;
  32. padding-left: 0
  33. }
  34. table.groups {
  35. border-spacing: 1px;
  36. }
  37. table.groups tr.indirect {
  38. background-color: #cccccc;
  39. }
  40. table.groups th {
  41. text-align: left;
  42. padding: 0 0 0 1ex;
  43. }
  44. table.groups td {
  45. padding: 2px;
  46. }
  47. table.groups td.checkbox {
  48. text-align: center;
  49. white-space: nowrap;
  50. }
  51. table#user_responsibilities th {
  52. text-align: center;
  53. padding: 0 1em 1em;
  54. }
  55. table#user_responsibilities th.product {
  56. text-align: left;
  57. padding: 1em 0 0;
  58. }
  59. table#user_responsibilities td.center {
  60. text-align: center;
  61. }
  62. .missing {
  63. color: red;
  64. border-color: inherit;
  65. }