dialog.css 502 B

1234567891011121314151617181920212223242526272829303132
  1. .CodeMirror-dialog {
  2. position: absolute;
  3. left: 0; right: 0;
  4. background: white;
  5. z-index: 15;
  6. padding: .1em .8em;
  7. overflow: hidden;
  8. color: #333;
  9. }
  10. .CodeMirror-dialog-top {
  11. border-bottom: 1px solid #eee;
  12. top: 0;
  13. }
  14. .CodeMirror-dialog-bottom {
  15. border-top: 1px solid #eee;
  16. bottom: 0;
  17. }
  18. .CodeMirror-dialog input {
  19. border: none;
  20. outline: none;
  21. background: transparent;
  22. width: 20em;
  23. color: inherit;
  24. font-family: monospace;
  25. }
  26. .CodeMirror-dialog button {
  27. font-size: 70%;
  28. }