2023-04-03 12:06:57 +02:00
|
|
|
.combo-markdown-editor {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.combo-markdown-editor markdown-toolbar {
|
|
|
|
cursor: default;
|
2023-04-11 10:36:18 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-04-03 12:06:57 +02:00
|
|
|
padding-bottom: 10px;
|
2023-07-04 19:45:45 +02:00
|
|
|
gap: .5rem;
|
|
|
|
flex-wrap: wrap;
|
2023-04-03 12:06:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.combo-markdown-editor .markdown-toolbar-group {
|
2023-04-11 09:26:18 +02:00
|
|
|
display: flex;
|
2023-04-03 12:06:57 +02:00
|
|
|
}
|
|
|
|
|
2023-04-11 10:36:18 +02:00
|
|
|
.combo-markdown-editor .markdown-toolbar-group:last-child {
|
|
|
|
flex: 1;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
2023-04-03 12:06:57 +02:00
|
|
|
.combo-markdown-editor .markdown-toolbar-button {
|
2023-04-11 10:36:18 +02:00
|
|
|
border: none;
|
|
|
|
background: none;
|
2023-04-03 12:06:57 +02:00
|
|
|
user-select: none;
|
|
|
|
padding: 5px;
|
2023-04-11 10:36:18 +02:00
|
|
|
cursor: pointer;
|
2023-04-13 21:05:06 +02:00
|
|
|
color: var(--color-text);
|
2023-04-11 10:36:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.combo-markdown-editor .markdown-toolbar-button:hover {
|
|
|
|
color: var(--color-primary);
|
2023-04-03 12:06:57 +02:00
|
|
|
}
|
|
|
|
|
2023-04-07 19:03:29 +02:00
|
|
|
.ui.form .combo-markdown-editor textarea.markdown-text-editor,
|
|
|
|
.combo-markdown-editor textarea.markdown-text-editor {
|
2023-04-03 12:06:57 +02:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2023-04-07 19:03:29 +02:00
|
|
|
min-height: 200px;
|
|
|
|
max-height: calc(100vh - 200px);
|
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
|
|
|
|
.combo-markdown-editor .CodeMirror-scroll {
|
|
|
|
max-height: calc(100vh - 200px);
|
2023-04-03 12:06:57 +02:00
|
|
|
}
|
2023-04-09 18:18:45 +02:00
|
|
|
|
2023-04-16 14:01:08 +02: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 18:18:45 +02: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);
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 1px solid var(--color-secondary);
|
|
|
|
box-shadow: 0 .5rem 1rem var(--color-shadow);
|
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions li {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 4px 8px;
|
2023-05-22 01:37:32 +02:00
|
|
|
font-weight: var(--font-weight-medium);
|
2023-04-09 18:18:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions li + li {
|
|
|
|
border-top: 1px solid var(--color-secondary-alpha-40);
|
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions li:first-child {
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions li:last-child {
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions li:only-child {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions li:hover {
|
|
|
|
background: var(--color-hover);
|
|
|
|
}
|
|
|
|
|
|
|
|
text-expander .suggestions .fullname {
|
2023-05-22 01:37:32 +02:00
|
|
|
font-weight: var(--font-weight-normal);
|
2023-04-09 18:18:45 +02: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;
|
|
|
|
}
|