/* webfontsのパスをplugin_assets配下に向ける */
@font-face {
  font-family: 'Font Awesome 5 Free';
  src: url('../stylesheets/webfonts/fa-solid-900.woff2') format('woff2');
  font-weight: 900;
}
@font-face {
  font-family: 'Font Awesome 5 Free';
  src: url('../stylesheets/webfonts/fa-regular-400.woff2') format('woff2');
  font-weight: 400;
}

/* ★ H1〜H3のフォントサイズを抑える */
.CodeMirror .cm-header-1 { font-size: 1.1em; font-weight: bold; }
.CodeMirror .cm-header-2 { font-size: 1.05em; font-weight: bold; }
.CodeMirror .cm-header-3 { font-size: 1.0em; font-weight: bold; }

.EasyMDEContainer .CodeMirror {
  min-height: 200px;
  border: 1px solid #bbb;
  border-radius: 3px;
  font-family: 'Menlo', 'Monaco', 'Consolas', monospace;
  font-size: 13px;
  line-height: 1.6;
}

.editor-toolbar {
  z-index: 10;
  border-color: #bbb;
}

/* Redmine標準のMarkdownツールバーを非表示（EasyMDEのツールバーで代替） */
.jstToolbar {
  display: none !important;
}

/* Redmine標準のMarkdownツールバーを非表示 */
.jstElements {
  display: none !important;
}
