Skip to content

Commit

Permalink
Merge Styling Portlets Framework - Meeds-io/MIPs#144 (#1018)
Browse files Browse the repository at this point in the history
  • Loading branch information
boubaker authored Jul 5, 2024
2 parents 735325d + a74e814 commit c06a5a9
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,11 @@
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/

@normalFontSize: 16px;
@bodyMargin: 19px;
@blockquoteFontStyle: normal;
@blockquoteMargin: 0 0 10px 0;
@blockquotePadding: 10px;
@ckEditableFontSize: 14px;
@ckEditableFontSize: 16px;
@ckEditableLineHeight: 1.4;
@titleFontWeight: 500;
@listMargin: 0 0 10px 0;

Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
padding: 6px 25px 4px 6px ~'; /** orientation=rt */ ';
.popupTitle {
color: @textColor;
font-size: 14px;
font-weight: bold;
line-height: 25px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
-->
<template>
<div>
<div class="d-flex flex-column">
<v-card
v-if="fixedToolbar"
:min-height="richEditorToolbarHeight"
Expand All @@ -32,7 +32,7 @@
:instance-id="richEditorId"
:toolbar-location="isSmall && 'bottom' || 'top'"
:large-toolbar="!isSmall"
class="no-border-recursive"
class="no-border-recursive flex-grow-1"
@ready="$root.$emit('notes-editor-ready')"
@unloaded="$root.$emit('notes-editor-unloaded')" />
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@
}"
min-width="100%"
max-width="100%"
min-height="60"
class="d-flex flex-column border-box-sizing position-relative card-border-radius app-background-color"
class="d-flex flex-column border-box-sizing position-relative application-body"
flat>
<template v-if="edit">
<note-page-edit-drawer
Expand All @@ -43,7 +42,7 @@
ref="editor"
:class="editorBackgroundLoading && 'position-absolute l-0 r-0'"
:style="editorBackgroundLoading && 'z-index: -1;'"
class="full-width"
class="full-width full-height"
@saved="closeEditor"
@cancel="closeEditor" />
</template>
Expand All @@ -56,7 +55,7 @@
<note-page-view
v-if="hasNote"
:class="editorLoading && 'opacity-8 filter-blur-1'"
class="full-width overflow-hidden pa-1" />
class="full-width full-height overflow-hidden pa-1" />
</template>
</v-card>
</v-hover>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</v-list-item-icon>

<v-list-item-content>
<v-list-item-title class="text-color body-2 text-truncate">{{ noteTitle }}</v-list-item-title>
<v-list-item-title class="text-color text-truncate">{{ noteTitle }}</v-list-item-title>
</v-list-item-content>

<v-list-item-action>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div>
<div
v-if="isAvailableNote"
class="notes-application card-border-radius app-background-color pa-5"
class="notes-application application-body pa-5"
ref="content">
<div class="notes-application-header">
<div class="notes-title d-flex justify-space-between pb-4 ps-1">
Expand Down

0 comments on commit c06a5a9

Please sign in to comment.