You are here

editor.css in Cookie Content Blocker 8

Cookie content blocker CKEditor styling.

This styling is very basic and easy to override.

File

js/plugins/cookiecontentblocker/css/editor.css
View source
  1. /**
  2. * @file
  3. * Cookie content blocker CKEditor styling.
  4. *
  5. * This styling is very basic and easy to override.
  6. */
  7. .cookie-content-blocker {
  8. position: relative;
  9. display: block;
  10. margin-bottom: 15px;
  11. padding: 5px 5px 5px 40px;
  12. background: #eee;
  13. border-width: 1px;
  14. border-style: dashed dashed dashed solid;
  15. border-color: #bc3d2f;
  16. min-height: 1em;
  17. }
  18. .cookie-content-blocker:before {
  19. content: url('../icons/cookiecontentblocker-white.png');
  20. position: absolute;
  21. left: 0;
  22. top: 0;
  23. bottom: 0;
  24. display: block;
  25. padding: 3px;
  26. background: #bc3d2f;
  27. }