You are here

syntax_highlighter.css in CSS Injector 7

.ace-editor {
  display: none;
}
.has-js .ace-editor {
  display: block;
  position: relative;
  width: 100%;
  height: 300px;
  margin-bottom: 15px;
  margin-top: -10px;
  border: 1px #bbb solid;
}
.has-js .form-item-css-text .form-textarea-wrapper{
  display: none;
}
#editor {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.disable-ace {
  float: right;
  margin-top: -40px;
  text-decoration: none;
  color: #0074BD;
  cursor: pointer;
}
.disable-ace.ace-disabled {
 margin-top: -10px;
}
.disable-ace:hover {
  text-decoration: underline;
}

File

syntax_highlighter.css
View source
  1. .ace-editor {
  2. display: none;
  3. }
  4. .has-js .ace-editor {
  5. display: block;
  6. position: relative;
  7. width: 100%;
  8. height: 300px;
  9. margin-bottom: 15px;
  10. margin-top: -10px;
  11. border: 1px #bbb solid;
  12. }
  13. .has-js .form-item-css-text .form-textarea-wrapper{
  14. display: none;
  15. }
  16. #editor {
  17. position: absolute;
  18. top: 0;
  19. right: 0;
  20. bottom: 0;
  21. left: 0;
  22. }
  23. .disable-ace {
  24. float: right;
  25. margin-top: -40px;
  26. text-decoration: none;
  27. color: #0074BD;
  28. cursor: pointer;
  29. }
  30. .disable-ace.ace-disabled {
  31. margin-top: -10px;
  32. }
  33. .disable-ace:hover {
  34. text-decoration: underline;
  35. }