You are here

editor-global.css in Scald: Media Management made easy 7

Stylesheet used to provide align and wrap functionality for atoms

It is automatically included when the DnD plugin is used.

File

modules/fields/mee/css/editor-global.css
View source
  1. /**
  2. * @file
  3. * Stylesheet used to provide align and wrap functionality for atoms
  4. *
  5. * It is automatically included when the DnD plugin is used.
  6. */
  7. .atom-align-right {
  8. float: right;
  9. }
  10. .atom-align-left {
  11. float: left;
  12. }
  13. .atom-align-center {
  14. margin: 0 auto;
  15. display: table;
  16. }
  17. /**
  18. * The following rules make legend look nice with responsive images.
  19. */
  20. .dnd-atom-wrapper {
  21. display: table;
  22. }
  23. .dnd-drop-wrapper img {
  24. max-width: 100%;
  25. height: auto;
  26. }
  27. .dnd-legend-wrapper {
  28. display: table-caption;
  29. caption-side: bottom;
  30. }