Skip to content
Snippets Groups Projects
Commit 8826d3c8 authored by Yannis Barlas's avatar Yannis Barlas
Browse files

line height should always be double spaced

parent 8cd19dac
No related branches found
No related tags found
No related merge requests found
...@@ -58,8 +58,8 @@ class Editor extends ProseEditor { ...@@ -58,8 +58,8 @@ class Editor extends ProseEditor {
} }
render ($$) { render ($$) {
const { trackChangesView } = this.state // const { trackChangesView } = this.state
const canToggleTrackChanges = this.canToggleTrackChanges() // const canToggleTrackChanges = this.canToggleTrackChanges()
const el = $$('div').addClass('sc-prose-editor') const el = $$('div').addClass('sc-prose-editor')
...@@ -138,10 +138,6 @@ class Editor extends ProseEditor { ...@@ -138,10 +138,6 @@ class Editor extends ProseEditor {
) )
) )
if (trackChangesView && canToggleTrackChanges) {
el.addClass('track-changes-mode')
}
const modal = $$(ModalWarning, { const modal = $$(ModalWarning, {
width: 'medium', width: 'medium',
textAlign: 'center' textAlign: 'center'
......
...@@ -38,24 +38,6 @@ $active-blue: #4a90e2; ...@@ -38,24 +38,6 @@ $active-blue: #4a90e2;
width: 20%; width: 20%;
z-index: 9999; z-index: 9999;
} }
.track-changes-mode {
div.se-content {
line-height: 38px;
}
.sc-prose-editor-overlay-tools .se-active-tools .sc-comment-icon {
top: 0;
}
.sc-comment-pane-list li .comment-list .single-comment-row {
padding: 3px 12px;
}
.sc-overlay .se-active-tools .sc-overlay-bubble .sc-comment-icon {
top: 0;
}
}
} }
.sc-prose-editor { .sc-prose-editor {
...@@ -279,6 +261,7 @@ $active-blue: #4a90e2; ...@@ -279,6 +261,7 @@ $active-blue: #4a90e2;
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;
margin: 1.5% 17.8% 7%; margin: 1.5% 17.8% 7%;
min-height: 100vh; min-height: 100vh;
padding: 3% 4% 1%; padding: 3% 4% 1%;
......
...@@ -40,7 +40,8 @@ $white: #fff; ...@@ -40,7 +40,8 @@ $white: #fff;
font-size: 20px; font-size: 20px;
left: 8px; left: 8px;
position: relative; position: relative;
top: 6.7px; // top: 6.7px;
top: 0;
} }
.action-icon { .action-icon {
......
...@@ -82,7 +82,8 @@ $white: #fff; ...@@ -82,7 +82,8 @@ $white: #fff;
.single-comment-row { .single-comment-row {
border-bottom: 1px solid $dark-gray; border-bottom: 1px solid $dark-gray;
padding: 10px 12px; // padding: 10px 12px;
padding: 3px 12px;
.sc-comment-entry { .sc-comment-entry {
width: 88%; width: 88%;
......
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