sogo/UI/WebServerResources/scss/views/MessageEditorUI.scss

37 lines
801 B
SCSS
Raw Normal View History

2015-04-10 21:37:00 +02:00
/// MessageEditorUI.scss -*- Mode: text; indent-tabs-mode: nil; basic-offset: 2 -*-
2015-02-12 03:54:06 +01:00
[id=messageEditor] {
//width: (13 * $pitch + $mg); // 13 cols + 1margin for scrollbar
@include from(lg) {
@include flex-col(lg, 11, 1, 1);
}
@include at(md) {
@include flex-col(md, 10, 1, 1);
}
2015-02-12 03:54:06 +01:00
margin: 0 auto;
overflow: auto;
2015-02-20 05:17:50 +01:00
height: 100%;
background-color: sg-color($sogoPaper, 50);
2015-02-20 05:17:50 +01:00
transform: translateY(-1 * $pitch);
z-index: 40;
box-shadow: $whiteframe-shadow-z1;
}
.buttonsToolbar {
padding: $mg 0;
button {
min-width: 5em;
margin: 1em 0 1em 1em;
}
}
// CKE is overqualifying... let's use an ID
#cke_content,
textarea.ck-editor{
margin-top: $mg;
}
// Plain text editor
[id=messageEditor] textarea {
width: 100%;
min-height: grid-step(3);
margin-top: $mg;
2015-04-10 21:37:00 +02:00
}