update.admin.theme.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * @file
  3. * Styles used by the Update Manager module.
  4. */
  5. .project-update__title {
  6. font-weight: bold;
  7. font-size: 110%;
  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. font-weight: bold;
  24. color: #970f00;
  25. }
  26. .project-update__status-icon {
  27. padding-left: 0.5em; /* LTR */
  28. }
  29. [dir="rtl"] .project-update__status-icon {
  30. padding-left: 0;
  31. padding-right: 0.5em;
  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. text-align: right; /* LTR */
  51. padding-right: 1em; /* LTR */
  52. list-style-type: none;
  53. }
  54. [dir="rtl"] .project-update__version-links {
  55. text-align: left;
  56. padding-left: 1em;
  57. }
  58. .project-update__version--recommended-strong .project-update__version-title {
  59. font-weight: bold;
  60. }