mirror of
https://github.com/humhub/humhub.git
synced 2025-01-18 22:58:06 +01:00
35 lines
553 B
CSS
35 lines
553 B
CSS
.md-editor {
|
|
border-radius: 3px;
|
|
border-width: 2px;
|
|
}
|
|
|
|
.md-editor.active {
|
|
outline: 0px none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.md-editor > textarea {
|
|
min-height: 100px;
|
|
padding: 10px;
|
|
font-family: inherit;
|
|
color: #555555;
|
|
font-size: 14px;
|
|
background: #fff !important;
|
|
border-top: none;
|
|
border-bottom: none;
|
|
}
|
|
|
|
.md-editor textarea {
|
|
padding:10px;
|
|
}
|
|
|
|
.md-editor > textarea:focus {
|
|
border: 0;
|
|
outline: 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.md-preview {
|
|
padding-right:10px;
|
|
padding-left:10px;
|
|
} |