]> BookStack Code Mirror - bookstack/commitdiff
Tightened existing markdown editor styles
authorDan Brown <redacted>
Sun, 27 Nov 2022 19:52:10 +0000 (19:52 +0000)
committerDan Brown <redacted>
Sun, 27 Nov 2022 19:52:10 +0000 (19:52 +0000)
resources/icons/image.svg
resources/sass/_forms.scss
resources/sass/_layout.scss
resources/sass/_text.scss
resources/views/pages/parts/markdown-editor.blade.php

index 12ab73870cc64ccedb88711cc9569f5872e840d2..fcb5e8e8540d7c4dbe372dceb26f6ebc1359be36 100644 (file)
@@ -1,4 +1 @@
-<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>
index 57799faef2dad3a1f671ebeb15dd50ba4059d2ba..d9e18a9ed5c2042bd52922ce2672c76c0a908cbb 100644 (file)
     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 {
@@ -138,8 +141,8 @@ html.markdown-editor-display.dark-mode {
 }
 
 .editor-toolbar {
+  height: 32px;
   width: 100%;
-  padding: $-xs $-m;
   font-size: 11px;
   line-height: 1.6;
   border-bottom: 1px solid #DDD;
@@ -147,11 +150,6 @@ html.markdown-editor-display.dark-mode {
   @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;
@@ -159,6 +157,20 @@ html.markdown-editor-display.dark-mode {
   }
 }
 
+.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);
index a5f895f80de9a4ddcc95037663a68dd6a44eb4f0..4c7de600b84c8f33787720051d4e8fe058ee913a 100644 (file)
@@ -198,6 +198,9 @@ body.flexbox {
 .items-center {
   align-items: center;
 }
+.items-stretch {
+  align-items: stretch;
+}
 
 /**
  * Min width utilities
index 4eab8959a6931822dede2b488f24b0dd036a5cb1..6c68bd12b08b285af52fbfe2591feee9f7e4a8fc 100644 (file)
@@ -5,7 +5,7 @@
 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;
 }
 
index 1577be0528624cf1cbef0e118f9c4ea27d67dc80..3b4b1cb21d73b57d815c5512b93ef6ad7b527460 100644 (file)
@@ -6,18 +6,17 @@
      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>
 
@@ -33,7 +32,7 @@
 
     <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"