2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
.input-base {
|
2015-07-16 14:53:24 -04:00
|
|
|
border-radius: 3px;
|
2017-08-26 08:24:55 -04:00
|
|
|
border: 1px solid #D4D4D4;
|
2020-04-10 17:38:29 -04:00
|
|
|
@include lightDark(background-color, #fff, #333);
|
|
|
|
@include lightDark(border-color, #d4d4d4, #111);
|
|
|
|
@include lightDark(color, #666, #AAA);
|
2015-07-12 15:01:42 -04:00
|
|
|
display: inline-block;
|
2020-04-10 17:38:29 -04:00
|
|
|
font-size: $fs-m;
|
2017-08-26 08:24:55 -04:00
|
|
|
padding: $-xs*1.5;
|
2015-07-12 15:01:42 -04:00
|
|
|
width: 250px;
|
|
|
|
max-width: 100%;
|
2018-05-08 22:56:49 -04:00
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
&.neg, &.invalid {
|
|
|
|
border: 1px solid $negative;
|
|
|
|
}
|
|
|
|
&.pos, &.valid {
|
|
|
|
border: 1px solid $positive;
|
|
|
|
}
|
|
|
|
&.disabled, &[disabled] {
|
|
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAMUlEQVQIW2NkwAGuXbv2nxGbHEhCS0uLEUMSJgHShCKJLIEiiS4Bl8QmAZbEJQGSBAC62BuJ+tt7zgAAAABJRU5ErkJggg==);
|
|
|
|
}
|
2019-12-29 12:03:52 -05:00
|
|
|
&[readonly] {
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
}
|
2019-08-25 10:44:51 -04:00
|
|
|
&:focus {
|
|
|
|
border-color: var(--color-primary);
|
|
|
|
outline: 1px solid var(--color-primary);
|
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
2017-08-28 08:38:32 -04:00
|
|
|
.fake-input {
|
|
|
|
@extend .input-base;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2015-12-31 12:19:29 -05:00
|
|
|
#html-editor {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-03-25 10:41:15 -04:00
|
|
|
#markdown-editor {
|
|
|
|
position: relative;
|
|
|
|
z-index: 5;
|
2017-07-10 14:29:35 -04:00
|
|
|
#markdown-editor-input {
|
2016-03-25 10:41:15 -04:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
padding: $-xs $-m;
|
|
|
|
color: #444;
|
|
|
|
border-radius: 0;
|
|
|
|
max-height: 100%;
|
|
|
|
flex: 1;
|
|
|
|
border: 0;
|
2016-03-29 13:25:54 -04:00
|
|
|
width: 100%;
|
2016-03-25 10:41:15 -04:00
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.markdown-display, .markdown-editor-wrap {
|
|
|
|
flex: 1;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.markdown-editor-wrap {
|
|
|
|
display: flex;
|
2016-03-29 13:25:54 -04:00
|
|
|
flex-direction: column;
|
|
|
|
border: 1px solid #DDD;
|
2020-04-11 10:48:08 -04:00
|
|
|
@include lightDark(border-color, #ddd, #000);
|
2017-01-01 07:20:30 -05:00
|
|
|
width: 50%;
|
2018-02-26 06:31:11 -05:00
|
|
|
max-width: 50%;
|
2016-03-25 10:41:15 -04:00
|
|
|
}
|
2019-12-22 09:21:18 -05:00
|
|
|
&.fullscreen {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
2018-01-20 15:40:21 -05:00
|
|
|
}
|
|
|
|
|
2019-04-14 07:04:20 -04:00
|
|
|
@include smaller-than($m) {
|
|
|
|
#markdown-editor {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
#markdown-editor .markdown-editor-wrap {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
2019-12-22 09:21:18 -05:00
|
|
|
flex-grow: 1;
|
2019-04-14 07:04:20 -04:00
|
|
|
}
|
|
|
|
#markdown-editor .editor-toolbar {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
#markdown-editor .editor-toolbar > * {
|
|
|
|
padding: $-xs $-s;
|
|
|
|
}
|
|
|
|
.editor-toolbar-label {
|
|
|
|
float: none !important;
|
|
|
|
border-bottom: 1px solid #DDD;
|
|
|
|
display: block;
|
|
|
|
}
|
2019-12-22 09:21:18 -05:00
|
|
|
.markdown-editor-wrap:not(.active) .editor-toolbar + div,
|
|
|
|
.markdown-editor-wrap:not(.active) .editor-toolbar .buttons,
|
|
|
|
.markdown-editor-wrap:not(.active) .markdown-display {
|
2019-04-14 07:04:20 -04:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#markdown-editor .markdown-editor-wrap:not(.active) {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex: none;
|
2019-12-22 09:21:18 -05:00
|
|
|
min-height: 0;
|
2019-04-14 07:04:20 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-20 15:40:21 -05:00
|
|
|
.markdown-display {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-start: -1px;
|
2019-08-26 07:16:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.markdown-editor-display {
|
2020-04-11 10:48:08 -04:00
|
|
|
background-color: #fff;
|
2019-08-26 07:16:50 -04:00
|
|
|
body {
|
2020-04-11 10:48:08 -04:00
|
|
|
background-color: #fff;
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: 16px;
|
2020-04-11 10:48:08 -04:00
|
|
|
margin-inline-end: 16px;
|
2016-03-25 10:41:15 -04:00
|
|
|
}
|
2018-01-20 15:40:21 -05:00
|
|
|
[drawio-diagram]:hover {
|
2019-08-25 07:40:04 -04:00
|
|
|
outline: 2px solid var(--color-primary);
|
2018-01-20 15:40:21 -05:00
|
|
|
}
|
2016-03-25 10:41:15 -04:00
|
|
|
}
|
2018-01-20 15:40:21 -05:00
|
|
|
|
2020-04-11 10:48:08 -04:00
|
|
|
html.markdown-editor-display.dark-mode {
|
|
|
|
background-color: #222;
|
|
|
|
body {
|
|
|
|
background-color: #222;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-29 13:25:54 -04:00
|
|
|
.editor-toolbar {
|
|
|
|
width: 100%;
|
|
|
|
padding: $-xs $-m;
|
|
|
|
font-size: 11px;
|
|
|
|
line-height: 1.6;
|
|
|
|
border-bottom: 1px solid #DDD;
|
|
|
|
background-color: #EEE;
|
2020-04-11 10:48:08 -04:00
|
|
|
@include lightDark(background-color, #eee, #111);
|
|
|
|
@include lightDark(border-color, #ddd, #000);
|
2016-03-29 13:25:54 -04:00
|
|
|
flex: none;
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
clear: both;
|
|
|
|
}
|
2020-04-11 10:48:08 -04:00
|
|
|
@include whenDark {
|
|
|
|
button {
|
|
|
|
color: #AAA;
|
|
|
|
}
|
|
|
|
}
|
2016-03-29 13:25:54 -04:00
|
|
|
}
|
|
|
|
|
2016-03-25 10:41:15 -04:00
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
label {
|
2020-04-10 17:38:29 -04:00
|
|
|
@include lightDark(color, #666, #ddd);
|
2015-07-12 15:01:42 -04:00
|
|
|
display: block;
|
|
|
|
line-height: 1.4em;
|
2015-08-30 10:31:16 -04:00
|
|
|
font-size: 0.94em;
|
2017-08-26 08:24:55 -04:00
|
|
|
font-weight: 400;
|
2015-08-30 10:31:16 -04:00
|
|
|
padding-bottom: 2px;
|
2015-09-05 12:42:05 -04:00
|
|
|
margin-bottom: 0.2em;
|
2015-10-22 15:23:39 -04:00
|
|
|
&.inline {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
label.radio, label.checkbox {
|
|
|
|
font-weight: 400;
|
2017-04-15 10:04:30 -04:00
|
|
|
user-select: none;
|
2015-07-12 15:01:42 -04:00
|
|
|
input[type="radio"], input[type="checkbox"] {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-end: $-xs;
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-15 10:04:30 -04:00
|
|
|
label.inline.checkbox {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-end: $-m;
|
2017-04-15 10:04:30 -04:00
|
|
|
}
|
|
|
|
|
2015-09-05 12:42:05 -04:00
|
|
|
label + p.small {
|
|
|
|
margin-bottom: 0.8em;
|
|
|
|
}
|
|
|
|
|
2017-04-15 10:04:30 -04:00
|
|
|
table.form-table {
|
|
|
|
max-width: 100%;
|
|
|
|
td {
|
|
|
|
overflow: hidden;
|
|
|
|
padding: $-xxs/2 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-06 09:05:06 -04:00
|
|
|
input[type="text"], input[type="number"], input[type="email"], input[type="date"], input[type="search"], input[type="url"],
|
|
|
|
input[type="color"], input[type="password"], select, textarea {
|
2015-07-12 15:01:42 -04:00
|
|
|
@extend .input-base;
|
|
|
|
}
|
|
|
|
|
2017-04-15 10:04:30 -04:00
|
|
|
input[type=date] {
|
|
|
|
width: 190px;
|
|
|
|
}
|
|
|
|
|
2019-06-06 09:05:06 -04:00
|
|
|
input[type=color] {
|
|
|
|
height: 60px;
|
2019-12-07 16:23:15 -05:00
|
|
|
&.small {
|
|
|
|
height: 42px;
|
|
|
|
width: 60px;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
2019-06-06 09:05:06 -04:00
|
|
|
}
|
|
|
|
|
2015-10-18 12:29:26 -04:00
|
|
|
.toggle-switch {
|
|
|
|
user-select: none;
|
2019-02-02 10:49:57 -05:00
|
|
|
display: inline-grid;
|
|
|
|
grid-template-columns: (16px + $-s) 1fr;
|
|
|
|
align-items: center;
|
|
|
|
margin: $-m 0;
|
|
|
|
.custom-checkbox {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
border-radius: 2px;
|
|
|
|
display: inline-block;
|
2019-02-03 08:45:45 -05:00
|
|
|
border: 2px solid currentColor;
|
|
|
|
opacity: 0.6;
|
2019-02-02 10:49:57 -05:00
|
|
|
overflow: hidden;
|
2019-02-03 08:45:45 -05:00
|
|
|
fill: currentColor;
|
2019-02-02 10:49:57 -05:00
|
|
|
.svg-icon {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
bottom: auto;
|
|
|
|
top: -1.5px;
|
|
|
|
left: 0;
|
|
|
|
transition: transform ease-in-out 120ms;
|
|
|
|
transform: scale(0);
|
|
|
|
transform-origin: center center;
|
2015-10-18 12:29:26 -04:00
|
|
|
}
|
|
|
|
}
|
2019-02-02 10:49:57 -05:00
|
|
|
input[type=checkbox] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
input[type=checkbox]:checked + .custom-checkbox .svg-icon {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
.custom-checkbox:hover {
|
|
|
|
background-color: rgba(0, 0, 0, 0.05);
|
2019-02-03 08:45:45 -05:00
|
|
|
opacity: 0.8;
|
2015-10-22 15:23:39 -04:00
|
|
|
}
|
|
|
|
}
|
2019-02-03 12:34:15 -05:00
|
|
|
.toggle-switch-list {
|
|
|
|
.toggle-switch {
|
|
|
|
margin: $-xs 0;
|
|
|
|
}
|
|
|
|
&.compact .toggle-switch {
|
|
|
|
margin: 1px 0;
|
|
|
|
}
|
2019-02-03 08:45:45 -05:00
|
|
|
}
|
2015-10-18 12:29:26 -04:00
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
.form-group {
|
|
|
|
margin-bottom: $-s;
|
2019-02-02 10:49:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.setting-list > div {
|
|
|
|
border-bottom: 1px solid #DDD;
|
|
|
|
padding: $-xl 0;
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
2016-05-22 06:01:21 -04:00
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
2019-02-02 10:49:57 -05:00
|
|
|
.setting-list-label {
|
2019-03-16 12:00:41 -04:00
|
|
|
color: #222;
|
2019-02-02 10:49:57 -05:00
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
.setting-list-label + p.small {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2019-02-03 08:45:45 -05:00
|
|
|
.setting-list-label + .grid {
|
|
|
|
margin-top: $-m;
|
|
|
|
}
|
2019-02-03 12:34:15 -05:00
|
|
|
|
|
|
|
.setting-list .grid, .stretch-inputs {
|
2019-02-03 08:45:45 -05:00
|
|
|
input[type=text], input[type=email], input[type=password], select {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2015-07-15 17:55:49 -04:00
|
|
|
|
2018-03-18 11:13:46 -04:00
|
|
|
.simple-code-input {
|
|
|
|
background-color: #F8F8F8;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 12px;
|
|
|
|
min-height: 100px;
|
2019-02-02 10:49:57 -05:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2018-03-18 11:13:46 -04:00
|
|
|
}
|
|
|
|
|
2015-08-15 19:18:22 -04:00
|
|
|
.form-group {
|
2019-04-21 09:11:49 -04:00
|
|
|
div.text-pos, div.text-neg, p.text-post, p.text-neg {
|
2015-08-15 19:18:22 -04:00
|
|
|
padding: $-xs 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-10 08:46:50 -05:00
|
|
|
.form-group[collapsible] {
|
|
|
|
padding: 0 $-m;
|
2018-12-09 11:51:31 -05:00
|
|
|
border: 1px solid #DDD;
|
|
|
|
border-radius: 4px;
|
2017-12-10 08:46:50 -05:00
|
|
|
.collapse-title {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-start: -$-m;
|
|
|
|
margin-inline-end: -$-m;
|
2017-12-10 08:46:50 -05:00
|
|
|
padding: $-s $-m;
|
2019-08-25 10:44:51 -04:00
|
|
|
display: block;
|
|
|
|
width: calc(100% + 32px);
|
2020-04-05 08:07:19 -04:00
|
|
|
text-align: start;
|
2017-12-10 08:46:50 -05:00
|
|
|
}
|
|
|
|
.collapse-title, .collapse-title label {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.collapse-title label {
|
|
|
|
padding-bottom: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
.collapse-title label:before {
|
|
|
|
display: inline-block;
|
|
|
|
content: '▸';
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-end: $-m;
|
2017-12-10 08:46:50 -05:00
|
|
|
transition: all ease-in-out 400ms;
|
|
|
|
transform: rotate(0);
|
|
|
|
}
|
|
|
|
.collapse-content {
|
|
|
|
display: none;
|
|
|
|
padding-bottom: $-m;
|
|
|
|
}
|
|
|
|
&.open .collapse-title label:before {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-15 17:55:49 -04:00
|
|
|
.inline-input-style {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2017-08-26 08:24:55 -04:00
|
|
|
padding: $-s;
|
2015-07-15 17:55:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.title-input input[type="text"] {
|
|
|
|
@extend .inline-input-style;
|
|
|
|
margin-top: 0;
|
2017-08-26 08:24:55 -04:00
|
|
|
font-size: 2em;
|
2015-07-15 17:55:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.title-input.page-title {
|
2015-07-21 17:11:30 -04:00
|
|
|
font-size: 0.8em;
|
2020-04-11 10:48:08 -04:00
|
|
|
@include lightDark(background-color, #fff, #333);
|
2015-08-16 09:51:45 -04:00
|
|
|
.input {
|
2015-08-31 06:43:28 -04:00
|
|
|
border: 0;
|
2015-08-16 09:51:45 -04:00
|
|
|
margin-bottom: -1px;
|
|
|
|
}
|
|
|
|
input[type="text"] {
|
|
|
|
max-width: 840px;
|
|
|
|
margin: 0 auto;
|
|
|
|
border: none;
|
|
|
|
}
|
2015-07-15 17:55:49 -04:00
|
|
|
}
|
2015-08-16 09:51:45 -04:00
|
|
|
|
2015-09-03 11:51:10 -04:00
|
|
|
.page-title input {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 1.4em;
|
|
|
|
}
|
|
|
|
|
2015-07-15 17:55:49 -04:00
|
|
|
.description-input textarea {
|
|
|
|
@extend .inline-input-style;
|
|
|
|
font-size: $fs-m;
|
|
|
|
color: #666;
|
|
|
|
width: 100%;
|
2015-09-01 10:35:11 -04:00
|
|
|
}
|
|
|
|
|
2016-03-25 10:41:15 -04:00
|
|
|
div[editor-type="markdown"] .title-input.page-title input[type="text"] {
|
|
|
|
max-width: 100%;
|
2020-04-11 10:48:08 -04:00
|
|
|
border-radius: 0;
|
2016-03-25 10:41:15 -04:00
|
|
|
}
|
|
|
|
|
2015-09-01 10:35:11 -04:00
|
|
|
.search-box {
|
2015-09-06 10:03:37 -04:00
|
|
|
max-width: 100%;
|
|
|
|
position: relative;
|
2015-09-01 10:35:11 -04:00
|
|
|
button {
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
2020-04-11 15:02:07 -04:00
|
|
|
@include lightDark(color, #666, #AAA);
|
2015-09-01 10:35:11 -04:00
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
2017-08-19 10:33:22 -04:00
|
|
|
position: absolute;
|
2017-08-26 12:17:04 -04:00
|
|
|
left: 8px;
|
2019-08-25 07:40:04 -04:00
|
|
|
top: 9px;
|
2020-04-05 08:07:19 -04:00
|
|
|
@include rtl {
|
|
|
|
right: 8px;
|
|
|
|
left: auto;
|
|
|
|
}
|
2015-09-01 10:35:11 -04:00
|
|
|
}
|
|
|
|
input {
|
2017-08-19 10:33:22 -04:00
|
|
|
display: block;
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: $-l + 4px;
|
2015-09-01 10:35:11 -04:00
|
|
|
width: 300px;
|
2015-09-06 10:03:37 -04:00
|
|
|
max-width: 100%;
|
2015-09-01 10:35:11 -04:00
|
|
|
}
|
2019-03-30 10:27:00 -04:00
|
|
|
&.flexible input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2019-04-13 06:09:17 -04:00
|
|
|
.search-box-cancel {
|
|
|
|
left: auto;
|
|
|
|
right: 0;
|
|
|
|
}
|
2015-10-22 15:23:39 -04:00
|
|
|
}
|
|
|
|
|
2017-08-13 08:25:30 -04:00
|
|
|
.outline > input {
|
2016-05-13 16:20:21 -04:00
|
|
|
border: 0;
|
|
|
|
border-bottom: 2px solid #DDD;
|
|
|
|
border-radius: 0;
|
|
|
|
&:focus, &:active {
|
|
|
|
border: 0;
|
|
|
|
border-bottom: 2px solid #AAA;
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-05 19:15:03 -04:00
|
|
|
|
2016-03-13 10:00:24 -04:00
|
|
|
.image-picker img {
|
|
|
|
background-color: #BBB;
|
2019-05-05 19:15:03 -04:00
|
|
|
max-width: 100%;
|
2018-02-26 06:31:11 -05:00
|
|
|
}
|
2019-08-25 10:44:51 -04:00
|
|
|
|
|
|
|
.custom-file-input {
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 1px;
|
|
|
|
height: 1px;
|
|
|
|
border: 0;
|
|
|
|
clip: rect(0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
.custom-file-input:focus + label {
|
|
|
|
border-color: var(--color-primary);
|
|
|
|
outline: 1px solid var(--color-primary);
|
|
|
|
}
|