You are here

BUE.preview.css in BUEditor 8.2

Same filename and directory in other branches
  1. 8 library/css/BUE.preview.css
/* Preview */
.bue-preview {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  background-color: #ffe;
  padding: 0.5em;
}
.bue.previewing .bue-preview {
  display: block;
}
.bue.previewing .bue-textarea {
  opacity: 0;
}

File

library/css/BUE.preview.css
View source
  1. /* Preview */
  2. .bue-preview {
  3. display: none;
  4. position: absolute;
  5. left: 0;
  6. top: 0;
  7. right: 0;
  8. bottom: 0;
  9. overflow: auto;
  10. background-color: #ffe;
  11. padding: 0.5em;
  12. }
  13. .bue.previewing .bue-preview {
  14. display: block;
  15. }
  16. .bue.previewing .bue-textarea {
  17. opacity: 0;
  18. }