2023-04-03 10:06:57 +00:00
|
|
|
.combo-markdown-editor {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.combo-markdown-editor markdown-toolbar {
|
|
|
|
cursor: default;
|
2023-04-11 08:36:18 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-04-03 10:06:57 +00:00
|
|
|
padding-bottom: 10px;
|
2023-07-04 17:45:45 +00:00
|
|
|
gap: .5rem;
|
|
|
|
flex-wrap: wrap;
|
2023-04-03 10:06:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.combo-markdown-editor .markdown-toolbar-group {
|
2023-04-11 07:26:18 +00:00
|
|
|
display: flex;
|
2023-04-03 10:06:57 +00:00
|
|
|
}
|
|
|
|
|
2023-04-11 08:36:18 +00:00
|
|
|
.combo-markdown-editor .markdown-toolbar-group:last-child {
|
|
|
|
flex: 1;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
2023-04-03 10:06:57 +00:00
|
|
|
.combo-markdown-editor .markdown-toolbar-button {
|
2023-04-11 08:36:18 +00:00
|
|
|
border: none;
|
|
|
|
background: none;
|
2023-04-03 10:06:57 +00:00
|
|
|
user-select: none;
|
|
|
|
padding: 5px;
|
2023-04-11 08:36:18 +00:00
|
|
|
cursor: pointer;
|
2023-04-13 19:05:06 +00:00
|
|
|
color: var(--color-text);
|
2024-06-30 13:03:32 +00:00
|
|
|
line-height: 20px;
|
2023-04-11 08:36:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.combo-markdown-editor .markdown-toolbar-button:hover {
|
|
|
|
color: var(--color-primary);
|
2023-04-03 10:06:57 +00:00
|
|
|
}
|
|
|
|
|
2023-04-07 17:03:29 +00:00
|
|
|
.ui.form .combo-markdown-editor textarea.markdown-text-editor,
|
|
|
|
.combo-markdown-editor textarea.markdown-text-editor {
|
2023-04-03 10:06:57 +00:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2024-02-18 14:51:21 +00:00
|
|
|
max-height: calc(100vh - var(--min-height-textarea));
|
2023-04-07 17:03:29 +00:00
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
|
|
|
|
.combo-markdown-editor .CodeMirror-scroll {
|
2024-02-18 14:51:21 +00:00
|
|
|
max-height: calc(100vh - var(--min-height-textarea));
|
2023-04-03 10:06:57 +00:00
|
|
|
}
|
2023-04-09 16:18:45 +00:00
|
|
|
|
2023-04-16 12:01:08 +00:00
|
|
|
/* use the same styles as markup/content.css */
|
|
|
|
.combo-markdown-editor .CodeMirror-scroll .cm-header-1 {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.combo-markdown-editor .CodeMirror-scroll .cm-header-2 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.combo-markdown-editor .CodeMirror-scroll .cm-header-3 {
|
|
|
|
font-size: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.combo-markdown-editor .CodeMirror-scroll .cm-header-4 {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.combo-markdown-editor .CodeMirror-scroll .cm-header-5 {
|
|
|
|
font-size: 0.875em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.combo-markdown-editor .CodeMirror-scroll .cm-header-6 {
|
|
|
|
font-size: 0.85em;
|
|
|
|
}
|
|
|
|
|
2023-04-09 16:18:45 +00:00
|
|
|
text-expander {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions {
|
|
|
|
position: absolute;
|
|
|
|
min-width: 180px;
|
|
|
|
padding: 0;
|
|
|
|
margin-top: 24px;
|
|
|
|
list-style: none;
|
|
|
|
background: var(--color-box-body);
|
2023-08-28 19:43:59 +00:00
|
|
|
border-radius: var(--border-radius);
|
2023-04-09 16:18:45 +00:00
|
|
|
border: 1px solid var(--color-secondary);
|
|
|
|
box-shadow: 0 .5rem 1rem var(--color-shadow);
|
2023-09-24 23:29:36 +00:00
|
|
|
z-index: 100; /* needs to be > 20 to be on top of dropzone's .dz-details */
|
2023-04-09 16:18:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions li {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 4px 8px;
|
2023-05-21 23:37:32 +00:00
|
|
|
font-weight: var(--font-weight-medium);
|
2023-04-09 16:18:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions li + li {
|
|
|
|
border-top: 1px solid var(--color-secondary-alpha-40);
|
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions li:first-child {
|
2023-08-28 19:43:59 +00:00
|
|
|
border-radius: var(--border-radius) var(--border-radius) 0 0;
|
2023-04-09 16:18:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions li:last-child {
|
2023-08-28 19:43:59 +00:00
|
|
|
border-radius: 0 0 var(--border-radius) var(--border-radius);
|
2023-04-09 16:18:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions li:only-child {
|
2023-08-28 19:43:59 +00:00
|
|
|
border-radius: var(--border-radius);
|
2023-04-09 16:18:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions li:hover {
|
|
|
|
background: var(--color-hover);
|
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions .fullname {
|
2023-05-21 23:37:32 +00:00
|
|
|
font-weight: var(--font-weight-normal);
|
2023-04-09 16:18:45 +00:00
|
|
|
margin-left: 4px;
|
|
|
|
color: var(--color-text-light-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions li[aria-selected="true"],
|
|
|
|
text-expander .suggestions li[aria-selected="true"] span {
|
|
|
|
background: var(--color-primary);
|
|
|
|
color: var(--color-primary-contrast);
|
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions img {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|