update.admin.theme.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /**
  2. * @file
  3. * Styles used by the Update Manager module.
  4. */
  5. .update-wrapper {
  6. margin-top: 20px;
  7. }
  8. h1.update {
  9. padding: 0;
  10. }
  11. .update td {
  12. padding: 20px;
  13. }
  14. .update a {
  15. font-weight: 700;
  16. }
  17. .update .color-success a,
  18. .update .color-success .project-update__title,
  19. .update .color-success .project-update__title a,
  20. .project-update__status--current {
  21. color: #73b355;
  22. }
  23. .update .color-warning a,
  24. .update .color-warning .project-update__title,
  25. .update .color-warning .project-update__title a,
  26. .project-update__status--not-supported,
  27. .project-update__status--not-current {
  28. color: #e29700;
  29. }
  30. .update .color-error a,
  31. .update .color-error .project-update__title,
  32. .update .color-error .project-update__title a,
  33. .project-update__status--security-error {
  34. color: #e32700;
  35. }
  36. .project-update__title {
  37. font-size: 14px;
  38. line-height: 20px;
  39. font-weight: 700;
  40. text-transform: uppercase;
  41. margin-bottom: 12px;
  42. }
  43. .project-update__status {
  44. float: right; /* LTR */
  45. font-size: 14px;
  46. line-height: 20px;
  47. display: flex;
  48. font-weight: 700;
  49. text-transform: uppercase;
  50. margin-left: 20px;
  51. }
  52. [dir="rtl"] .project-update__status {
  53. float: left;
  54. margin-left: 0;
  55. margin-right: 20px;
  56. }
  57. .project-update__status-icon {
  58. padding: 0 0 0 10px;
  59. display: inline-flex;
  60. }
  61. [dir="rtl"] .project-update__status-icon {
  62. padding-left: 0;
  63. padding-right: 10px;
  64. }
  65. .project-updates__details {
  66. padding: 0;
  67. font-size: 12px;
  68. }
  69. .project-update__version {
  70. padding: 0;
  71. }
  72. .project-update__version-date {
  73. white-space: nowrap;
  74. }
  75. .project-update__version-details {
  76. padding-right: 0.5em; /* LTR */
  77. }
  78. [dir="rtl"] .project-update__version-details {
  79. padding-left: 0.5em;
  80. direction: ltr; /* Version numbers should always be LTR. */
  81. }
  82. .project-update__version-links {
  83. padding: 0;
  84. margin: 0;
  85. list-style-type: none;
  86. display: flex;
  87. justify-content: flex-end;
  88. }
  89. .project-update__version-links li {
  90. margin-left: 10px;
  91. }
  92. .project-update__version-links li a {
  93. margin-right: 0;
  94. }
  95. .update .color-warning .project-update__version-links li a:hover {
  96. border-color: #e29700;
  97. }
  98. .update .color-error .project-update__version-links li a:hover {
  99. border-color: #e32700;
  100. }
  101. .project-update__version--recommended-strong .project-update__version-title {
  102. font-weight: bold;
  103. }
  104. .project-update__version--recommended > div {
  105. display: flex;
  106. flex-wrap: wrap;
  107. margin-bottom: 5px;
  108. }
  109. .project-update__version--recommended .project-update__version-title {
  110. width: 100%;
  111. }
  112. .project-update__version--recommended .project-update__version-details {
  113. width: 50%;
  114. }