2016-07-07 18:54:16 -07:00
|
|
|
.document-editor {
|
2017-02-28 03:25:06 +00:00
|
|
|
position: relative;
|
2017-03-05 19:11:01 +00:00
|
|
|
|
2016-07-07 18:54:16 -07:00
|
|
|
> .toolbar {
|
|
|
|
width: 100%;
|
2016-11-09 15:16:44 -08:00
|
|
|
padding: 0;
|
2016-07-07 18:54:16 -07:00
|
|
|
|
2017-02-28 03:25:06 +00:00
|
|
|
> .edit-title {
|
|
|
|
width: 70%;
|
2016-07-07 18:54:16 -07:00
|
|
|
|
2017-02-28 03:25:06 +00:00
|
|
|
> input {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.5rem;
|
2017-03-05 19:11:01 +00:00
|
|
|
margin: 16px 0 10px 0;
|
2017-02-28 03:25:06 +00:00
|
|
|
color: $color-wysiwyg;
|
2016-07-07 18:54:16 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .buttons {
|
2017-02-28 03:25:06 +00:00
|
|
|
margin-top: 17px;
|
2016-07-07 18:54:16 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .canvas {
|
2017-02-28 03:25:06 +00:00
|
|
|
padding: 0;
|
2016-07-07 18:54:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.cancel-edits-dialog {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2017-03-05 19:11:01 +00:00
|
|
|
|
|
|
|
.document-editor-full {
|
|
|
|
@extend .transition-all;
|
|
|
|
@include border-radius(2px);
|
|
|
|
@include ease-in();
|
|
|
|
position: relative;
|
|
|
|
padding: 25px 50px;
|
|
|
|
box-shadow: 0 0 0 0.75pt $color-stroke,0 0 3pt 0.75pt $color-stroke;
|
|
|
|
background-color: $color-white;
|
|
|
|
}
|