Commit 6e0a0888 by ramdayalmunda

some styling

parent f47fa26e
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
.a-doc-editor .body .left-sidebar { .a-doc-editor .body .left-sidebar {
left: 0; left: 0;
border-radius: 0 10px 10px 0; border-radius: 0 10px 10px 0;
box-shadow: 4px 0px 10px 4px rgba(0, 0, 0, 0.4);
display: flex; display: flex;
flex-direction: column; flex-direction: column;
position: absolute; position: absolute;
...@@ -57,6 +58,7 @@ ...@@ -57,6 +58,7 @@
.a-doc-editor .body .right-sidebar { .a-doc-editor .body .right-sidebar {
right: 0; right: 0;
border-radius: 10px 0 0 10px; border-radius: 10px 0 0 10px;
box-shadow: -4px 0px 10px 4px rgba(0, 0, 0, 0.4);
display: flex; display: flex;
flex-direction: column; flex-direction: column;
position: absolute; position: absolute;
...@@ -103,6 +105,7 @@ ...@@ -103,6 +105,7 @@
background: #f3f3f3; background: #f3f3f3;
margin-bottom: 10px; margin-bottom: 10px;
width: 100%; width: 100%;
box-shadow: 4px 0px 10px 4px rgba(0, 0, 0, 0.4);
} }
.a-doc-editor .body .scrolling-area canvas.page:first-child { .a-doc-editor .body .scrolling-area canvas.page:first-child {
......
...@@ -84,9 +84,8 @@ var ADocEditor = function (customConfig) { ...@@ -84,9 +84,8 @@ var ADocEditor = function (customConfig) {
</div> </div>
<div class="body"> <div class="body">
<div class="scrolling-area" id="${scrollingAreaId}"> <div class="scrolling-area" id="${scrollingAreaId}">
<canvas class="page"></canvas>
</div> </div>
<div class="left-sidebar hide" id="${leftSidebarId}"> <div class="left-sidebar" id="${leftSidebarId}">
<div class="toggle-sidebar"> <div class="toggle-sidebar">
<span></span> <span></span>
<span>Summary</span> <span>Summary</span>
...@@ -94,7 +93,7 @@ var ADocEditor = function (customConfig) { ...@@ -94,7 +93,7 @@ var ADocEditor = function (customConfig) {
</div> </div>
<div class="sidebar-body"></div> <div class="sidebar-body"></div>
</div> </div>
<div class="right-sidebar" id="${rightSidebarId}"> <div class="right-sidebar hide" id="${rightSidebarId}">
<div class="toggle-sidebar"> <div class="toggle-sidebar">
<span>&lrarr;</span> <span>&lrarr;</span>
<span>Comments</span> <span>Comments</span>
......
Markdown is supported
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