help.css 630 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * @file
  3. * Styles for help messages.
  4. */
  5. .block-help {
  6. margin-bottom: 1em;
  7. padding: 1.26em;
  8. word-wrap: break-word;
  9. color: inherit;
  10. border: 1px solid #b3daf0;
  11. background-color: #eef5f9;
  12. overflow-wrap: break-word;
  13. }
  14. .block-help__container {
  15. padding-left: 24px; /* LTR */
  16. background-image: url(/core/profiles/demo_umami/themes/umami/images/svg/help.svg);
  17. background-repeat: no-repeat;
  18. background-position: left 4px; /* LTR */
  19. }
  20. [dir=rtl] .block-help__container {
  21. padding-right: 24px;
  22. padding-left: 0;
  23. background-position: right 4px;
  24. }
  25. .block-help__container > *:last-child {
  26. margin-bottom: 0;
  27. }