Same filename in this branch
  1. 10 core/modules/update/css/update.admin.theme.css
  2. 10 core/themes/stable9/css/update/update.admin.theme.css
Same filename and directory in other branches
  1. 9 core/themes/stable9/css/update/update.admin.theme.css

Styles used by the Update Manager module.

File

core/themes/stable9/css/update/update.admin.theme.css
View source
  1. /**
  2. * @file
  3. * Styles used by the Update Manager module.
  4. */
  5. .project-update__title {
  6. font-size: 110%;
  7. font-weight: bold;
  8. }
  9. .project-update__status {
  10. float: right; /* LTR */
  11. font-size: 110%;
  12. }
  13. [dir="rtl"] .project-update__status {
  14. float: left;
  15. }
  16. .project-update__status--not-supported {
  17. float: left; /* LTR */
  18. }
  19. [dir="rtl"] .project-update__status--not-supported {
  20. float: right;
  21. }
  22. .project-update__status--security-error {
  23. color: #970f00;
  24. font-weight: bold;
  25. }
  26. .project-update__status-icon {
  27. padding-left: 0.5em; /* LTR */
  28. }
  29. [dir="rtl"] .project-update__status-icon {
  30. padding-right: 0.5em;
  31. padding-left: 0;
  32. }
  33. .project-update__details {
  34. padding: 1em 1em 0.25em 1em;
  35. }
  36. .project-update__version {
  37. padding: 1em 0;
  38. }
  39. .project-update__version-date {
  40. white-space: nowrap;
  41. }
  42. .project-update__version-details {
  43. padding-right: 0.5em; /* LTR */
  44. }
  45. [dir="rtl"] .project-update__version-details {
  46. padding-left: 0.5em;
  47. direction: ltr; /* Version numbers should always be LTR. */
  48. }
  49. .project-update__version-links {
  50. padding-right: 1em; /* LTR */
  51. list-style-type: none;
  52. text-align: right; /* LTR */
  53. }
  54. [dir="rtl"] .project-update__version-links {
  55. padding-left: 1em;
  56. text-align: left;
  57. }
  58. .project-update__version--recommended-strong .project-update__version-title {
  59. font-weight: bold;
  60. }