-<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
- <path d="M0 0h24v24H0z" fill="none"/>
- <path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/>
-</svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z"/></svg>
flex: 1;
position: relative;
}
- .markdown-editor-wrap {
- display: flex;
- flex-direction: column;
- border: 1px solid #DDD;
- @include lightDark(border-color, #ddd, #000);
- width: 50%;
- max-width: 50%;
- }
&.fullscreen {
position: fixed;
top: 0;
}
}
+.markdown-editor-wrap {
+ display: flex;
+ flex-direction: column;
+ border-top: 1px solid #DDD;
+ border-bottom: 1px solid #DDD;
+ @include lightDark(border-color, #ddd, #000);
+ width: 50%;
+ max-width: 50%;
+}
+
+.markdown-editor-wrap + .markdown-editor-wrap {
+ border-inline-start: 1px solid;
+ @include lightDark(border-color, #ddd, #000);
+}
+
@include smaller-than($m) {
#markdown-editor {
flex-direction: column;
}
.editor-toolbar-label {
float: none !important;
- border-bottom: 1px solid #DDD;
+ @include lightDark(border-color, #DDD, #555);
display: block;
}
.markdown-editor-wrap:not(.active) .editor-toolbar + div,
}
}
-.markdown-display {
- margin-inline-start: -1px;
-}
-
.markdown-editor-display {
background-color: #fff;
body {
}
.editor-toolbar {
+ height: 32px;
width: 100%;
- padding: $-xs $-m;
font-size: 11px;
line-height: 1.6;
border-bottom: 1px solid #DDD;
@include lightDark(background-color, #eee, #111);
@include lightDark(border-color, #ddd, #000);
flex: none;
- &:after {
- content: '';
- display: block;
- clear: both;
- }
@include whenDark {
button {
color: #AAA;
}
}
+.editor-toolbar .buttons button {
+ font-size: .9rem;
+ width: 2rem;
+ text-align: center;
+ border-left: 1px solid;
+ @include lightDark(border-color, #DDD, #555);
+ svg {
+ margin-inline-end: 0;
+ }
+ &:hover {
+ @include lightDark(background-color, #DDD, #222);
+ }
+}
+
label {
@include lightDark(color, #666, #ddd);
.items-center {
align-items: center;
}
+.items-stretch {
+ align-items: stretch;
+}
/**
* Min width utilities
body, button, input, select, label, textarea {
font-family: $text;
}
-.Codemirror, pre, #markdown-editor-input, .editor-toolbar, .code-base {
+.Codemirror, pre, #markdown-editor-input, .text-mono, .code-base {
font-family: $mono;
}
class="flex-fill flex code-fill">
<div class="markdown-editor-wrap active">
- <div class="editor-toolbar">
- <span class="float left editor-toolbar-label">{{ trans('entities.pages_md_editor') }}</span>
- <div class="float right buttons">
+ <div class="editor-toolbar flex-container-row items-stretch justify-space-between">
+ <div class="editor-toolbar-label text-mono px-m py-xs flex-container-row items-center flex">
+ <span>{{ trans('entities.pages_md_editor') }}</span>
+ </div>
+ <div class="buttons flex-container-row items-stretch">
@if(config('services.drawio'))
- <button class="text-button" type="button" data-action="insertDrawing">@icon('drawing'){{ trans('entities.pages_md_insert_drawing') }}</button>
- <span class="mx-xs text-muted">|</span>
+ <button class="text-button" type="button" data-action="insertDrawing" title="{{ trans('entities.pages_md_insert_drawing') }}">@icon('drawing')</button>
@endif
- <button class="text-button" type="button" data-action="insertImage">@icon('image'){{ trans('entities.pages_md_insert_image') }}</button>
- <span class="mx-xs text-muted">|</span>
- <button class="text-button" type="button" data-action="insertLink">@icon('link'){{ trans('entities.pages_md_insert_link') }}</button>
- <span class="mx-xs text-muted">|</span>
- <button class="text-button" type="button" data-action="fullscreen">@icon('fullscreen'){{ trans('common.fullscreen') }}</button>
+ <button class="text-button" type="button" data-action="insertImage" title="{{ trans('entities.pages_md_insert_image') }}">@icon('image')</button>
+ <button class="text-button" type="button" data-action="insertLink" title="{{ trans('entities.pages_md_insert_link') }}">@icon('link')</button>
+ <button class="text-button" type="button" data-action="fullscreen" title="{{ trans('common.fullscreen') }}">@icon('fullscreen')</button>
</div>
</div>
<div class="markdown-editor-wrap">
<div class="editor-toolbar">
- <div class="editor-toolbar-label">{{ trans('entities.pages_md_preview') }}</div>
+ <div class="editor-toolbar-label text-mono px-m py-xs">{{ trans('entities.pages_md_preview') }}</div>
</div>
<iframe src="about:blank"
refs="markdown-editor@display"