60 lines
843 B
Plaintext
60 lines
843 B
Plaintext
/*
|
|
contains styling for all main editor directives
|
|
*/
|
|
|
|
.umb-editor-wrapper{
|
|
background: white;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
|
|
.umb-editor-header {
|
|
background: @grayLighter;
|
|
border-bottom: 1px solid @grayLight;
|
|
flex: 0 0 99px;
|
|
position: relative;
|
|
}
|
|
|
|
|
|
.umb-editor-container {
|
|
position: relative;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
overflow: auto;
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
.umb-editor-wrapper.-no-footer .umb-editor-container {
|
|
bottom: 0;
|
|
}
|
|
|
|
.umb-editor-container.-stop-scrolling {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.umb-editor-drawer {
|
|
margin: 0;
|
|
padding: 10px 20px;
|
|
background: @grayLighter;
|
|
border-top: 1px solid @grayLight;
|
|
flex: 1 0 31px;
|
|
}
|
|
|
|
|
|
.umb-editor-actions{
|
|
list-style: none;
|
|
margin: 0; padding: 0;
|
|
}
|
|
|
|
.umb-editor-actions li{
|
|
display: inline-block;
|
|
}
|