HackMD/public/vendor/codemirror/addon/dialog/dialog.css

34 lines
523 B
CSS
Raw Normal View History

2015-05-04 07:53:29 +00:00
.CodeMirror-dialog {
position: absolute;
left: 0; right: 0;
2015-07-04 03:31:01 +00:00
background: inherit;
2015-05-04 07:53:29 +00:00
z-index: 15;
padding: .1em .8em;
overflow: hidden;
2015-07-04 03:31:01 +00:00
color: inherit;
2015-05-04 07:53:29 +00:00
}
.CodeMirror-dialog-top {
border-bottom: 1px solid #eee;
top: 0;
}
.CodeMirror-dialog-bottom {
border-top: 1px solid #eee;
bottom: 0;
}
.CodeMirror-dialog input {
border: none;
outline: none;
background: transparent;
width: 20em;
color: inherit;
font-family: monospace;
}
.CodeMirror-dialog button {
font-size: 70%;
color: black;
2015-05-04 07:53:29 +00:00
}