update.css

Styles used by the Update Manager module.

File

drupal/modules/update/update.css
View source
  1. /**
  2. * @file
  3. * Styles used by the Update Manager module.
  4. */
  5. .update .project {
  6. font-weight: bold;
  7. font-size: 110%;
  8. padding-left: .25em; /* LTR */
  9. height: 22px;
  10. }
  11. .update .version-status {
  12. float: right; /* LTR */
  13. padding-right: 10px; /* LTR */
  14. font-size: 110%;
  15. height: 20px;
  16. }
  17. .update .version-status .icon {
  18. padding-left: .5em; /* LTR */
  19. }
  20. .update .version-date {
  21. white-space: nowrap;
  22. }
  23. .update .info {
  24. margin: 0;
  25. padding: 1em 1em .25em 1em;
  26. }
  27. .update tr.even,
  28. .update tr.odd {
  29. border: none;
  30. }
  31. .update tr td {
  32. border-top: 1px solid #ccc;
  33. border-bottom: 1px solid #ccc;
  34. }
  35. .update tr.error {
  36. background: #fcc;
  37. }
  38. .update tr.error .version-recommended {
  39. background: #fdd;
  40. }
  41. .update tr.ok {
  42. background: #dfd;
  43. }
  44. .update tr.warning {
  45. background: #ffd;
  46. }
  47. .update tr.warning .version-recommended {
  48. background: #ffe;
  49. }
  50. .current-version,
  51. .new-version {
  52. direction: ltr; /* Note: version numbers should always be LTR. */
  53. }
  54. .update tr.unknown {
  55. background: #ddd;
  56. }
  57. table.update,
  58. .update table.version {
  59. width: 100%;
  60. margin-top: .5em;
  61. border: none;
  62. }
  63. .update table.version tbody {
  64. border: none;
  65. }
  66. .update table.version tr,
  67. .update table.version td {
  68. line-height: .9em;
  69. padding: 0;
  70. margin: 0;
  71. border: none;
  72. background: none;
  73. }
  74. .update table.version .version-title {
  75. padding-left: 1em; /* LTR */
  76. width: 14em;
  77. }
  78. .update table.version .version-details {
  79. padding-right: .5em; /* LTR */
  80. }
  81. .update table.version .version-links {
  82. text-align: right; /* LTR */
  83. padding-right: 1em; /* LTR */
  84. }
  85. .update table.version-security .version-title {
  86. color: #970F00;
  87. }
  88. .update table.version-recommended-strong .version-title {
  89. font-weight: bold;
  90. }
  91. .update .security-error {
  92. font-weight: bold;
  93. color: #970F00;
  94. }
  95. .update .check-manually {
  96. padding-left: 1em; /* LTR */
  97. }
  98. .update-major-version-warning {
  99. color: #ff0000;
  100. }
  101. table tbody tr.update-security,
  102. table tbody tr.update-unsupported {
  103. background: #fcc;
  104. }
  105. th.update-project-name {
  106. width: 50%;
  107. }