Skip to content
Snippets Groups Projects
Commit 8cec1e35 authored by chris's avatar chris Committed by john
Browse files

more containers plus notes-line

parent f3f0d181
No related branches found
No related tags found
No related merge requests found
...@@ -91,7 +91,7 @@ class Editor extends ProseEditor { ...@@ -91,7 +91,7 @@ class Editor extends ProseEditor {
}).addClass('sc-comments-pane') }).addClass('sc-comments-pane')
: $$('div') : $$('div')
const editorWithComments = $$(SplitPane, { sizeA: '100%', splitType: 'vertical' }) const editorWithComments = $$(SplitPane, { sizeA: '80%', splitType: 'vertical' })
.append( .append(
editor, editor,
commentsPane commentsPane
......
...@@ -47,6 +47,10 @@ $active-blue: #4a90e2; ...@@ -47,6 +47,10 @@ $active-blue: #4a90e2;
right: 0; right: 0;
top: 0; top: 0;
.sc-container-editor {
max-width: 950px;
}
.se-toolbar-wrapper .sc-toolbar { .se-toolbar-wrapper .sc-toolbar {
background-color: $primary; background-color: $primary;
border: 1px solid $border; border: 1px solid $border;
...@@ -231,7 +235,7 @@ $active-blue: #4a90e2; ...@@ -231,7 +235,7 @@ $active-blue: #4a90e2;
position: fixed; position: fixed;
top: 0; top: 0;
user-select: none; user-select: none;
width: 128px; width: 8%;
z-index: 100; z-index: 100;
.sc-toolbar { .sc-toolbar {
...@@ -259,13 +263,13 @@ $active-blue: #4a90e2; ...@@ -259,13 +263,13 @@ $active-blue: #4a90e2;
div.se-content { div.se-content {
background-color: $white; background-color: $white;
box-shadow: 0 0 8px $dark-gray; // box-shadow: 0 0 8px $dark-gray;
color: $transparent-black; color: $transparent-black;
font-family: 'Fira Sans'; font-family: 'Fira Sans';
line-height: 38px; line-height: 38px;
margin: 1.5% 23.6% 5% 12%; margin: 1.5% 0% 5% 15%;
min-height: 100vh; min-height: 100vh;
padding: 3% 4% 1%; padding: 1% 0%;
transition: .3s; transition: .3s;
word-wrap: break-word; word-wrap: break-word;
......
...@@ -9,7 +9,7 @@ $white: #fff; ...@@ -9,7 +9,7 @@ $white: #fff;
.sc-prose-editor .se-content .sc-comment-pane-list { .sc-prose-editor .se-content .sc-comment-pane-list {
margin-top: 0; margin-top: 0;
padding-left: 27%; padding-left: 5%;
width: 100%; width: 100%;
li { li {
...@@ -20,9 +20,9 @@ $white: #fff; ...@@ -20,9 +20,9 @@ $white: #fff;
cursor: pointer; cursor: pointer;
height: auto; height: auto;
list-style-type: none; list-style-type: none;
max-width: 110%; max-width: 50%;
min-height: 20px; min-height: 20px;
min-width: 110%; min-width: 50%;
position: absolute; position: absolute;
word-wrap: break-word; word-wrap: break-word;
z-index: 0; z-index: 0;
......
...@@ -6,17 +6,20 @@ $light-blue: #e4f0ff; ...@@ -6,17 +6,20 @@ $light-blue: #e4f0ff;
bottom: 0; bottom: 0;
counter-reset: note-footer; counter-reset: note-footer;
height: 95px; height: 95px;
left: 130px; left: 15%;
max-height: 700px; max-height: 700px;
min-height: 10px; min-height: 10px;
position: fixed; position: fixed;
width: 68.4%; width: 80%;
z-index: 0; z-index: 0;
.resize-area { .resize-area {
background-color: red; background-image: linear-gradient(to right, #000 30%, rgba(255, 255, 255, 0) 0%);
background-position: top;
background-size: 10px 1px;
background-repeat: repeat-x;
cursor: row-resize; cursor: row-resize;
height: 5px; height: 3px;
position: absolute; position: absolute;
top: -14px; top: -14px;
width: 100%; width: 100%;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment