2024-12-09 13:25:35 +00:00
|
|
|
@use "sass:math";
|
|
|
|
|
|
|
|
@use "mixins";
|
|
|
|
@use "vars";
|
|
|
|
|
2015-07-12 20:01:42 +01:00
|
|
|
|
|
|
|
.input-base {
|
2015-07-16 19:53:24 +01:00
|
|
|
border-radius: 3px;
|
2017-08-26 13:24:55 +01:00
|
|
|
border: 1px solid #D4D4D4;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(background-color, #fff, #333);
|
|
|
|
@include mixins.lightDark(border-color, #d4d4d4, #111);
|
|
|
|
@include mixins.lightDark(color, #666, #AAA);
|
2015-07-12 20:01:42 +01:00
|
|
|
display: inline-block;
|
2024-12-09 13:25:35 +00:00
|
|
|
font-size: vars.$fs-m;
|
|
|
|
padding: vars.$xs*1.8;
|
2022-05-14 16:05:29 +01:00
|
|
|
height: 40px;
|
2015-07-12 20:01:42 +01:00
|
|
|
width: 250px;
|
|
|
|
max-width: 100%;
|
2018-05-09 08:26:49 +05:30
|
|
|
|
2015-07-12 20:01:42 +01:00
|
|
|
&.neg, &.invalid {
|
2023-06-13 15:52:33 +01:00
|
|
|
border: 1px solid var(--color-negative);
|
2015-07-12 20:01:42 +01:00
|
|
|
}
|
|
|
|
&.pos, &.valid {
|
2023-06-13 15:52:33 +01:00
|
|
|
border: 1px solid var(--color-positive);
|
2015-07-12 20:01:42 +01:00
|
|
|
}
|
|
|
|
&.disabled, &[disabled] {
|
|
|
|
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAMUlEQVQIW2NkwAGuXbv2nxGbHEhCS0uLEUMSJgHShCKJLIEiiS4Bl8QmAZbEJQGSBAC62BuJ+tt7zgAAAABJRU5ErkJggg==);
|
|
|
|
}
|
2019-12-29 17:03:52 +00:00
|
|
|
&[readonly] {
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
}
|
2019-08-25 15:44:51 +01:00
|
|
|
&:focus {
|
|
|
|
border-color: var(--color-primary);
|
|
|
|
outline: 1px solid var(--color-primary);
|
|
|
|
}
|
2015-07-12 20:01:42 +01:00
|
|
|
}
|
|
|
|
|
2021-06-29 22:06:49 +01:00
|
|
|
.input-fill-width {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
|
2017-08-28 13:38:32 +01:00
|
|
|
.fake-input {
|
|
|
|
@extend .input-base;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2015-12-31 17:19:29 +00:00
|
|
|
#html-editor {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-03-25 14:41:15 +00:00
|
|
|
#markdown-editor {
|
|
|
|
position: relative;
|
|
|
|
z-index: 5;
|
2017-07-10 19:29:35 +01:00
|
|
|
#markdown-editor-input {
|
2016-03-25 14:41:15 +00:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
2024-12-09 13:25:35 +00:00
|
|
|
padding: vars.$xs vars.$m;
|
2016-03-25 14:41:15 +00:00
|
|
|
color: #444;
|
|
|
|
border-radius: 0;
|
|
|
|
max-height: 100%;
|
|
|
|
flex: 1;
|
|
|
|
border: 0;
|
2016-03-29 18:25:54 +01:00
|
|
|
width: 100%;
|
2016-03-25 14:41:15 +00:00
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
2019-12-22 14:21:18 +00:00
|
|
|
&.fullscreen {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
2018-01-20 20:40:21 +00:00
|
|
|
}
|
|
|
|
|
2022-11-27 19:52:10 +00:00
|
|
|
.markdown-editor-wrap {
|
|
|
|
border-top: 1px solid #DDD;
|
|
|
|
border-bottom: 1px solid #DDD;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(border-color, #ddd, #000);
|
2022-11-28 14:08:20 +00:00
|
|
|
position: relative;
|
|
|
|
flex: 1;
|
2023-04-13 12:51:52 +01:00
|
|
|
min-width: 0;
|
2022-11-27 19:52:10 +00:00
|
|
|
}
|
|
|
|
.markdown-editor-wrap + .markdown-editor-wrap {
|
2022-11-28 14:08:20 +00:00
|
|
|
flex-basis: 50%;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
}
|
|
|
|
|
2023-04-10 15:01:44 +01:00
|
|
|
.markdown-editor-wrap .cm-editor {
|
|
|
|
flex: 1;
|
2023-04-13 12:51:52 +01:00
|
|
|
max-width: 100%;
|
2023-04-18 15:08:17 +01:00
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
2023-04-10 15:01:44 +01:00
|
|
|
}
|
|
|
|
|
2022-11-28 14:08:20 +00:00
|
|
|
.markdown-panel-divider {
|
|
|
|
width: 2px;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(background-color, #ddd, #000);
|
2022-11-28 14:08:20 +00:00
|
|
|
cursor: col-resize;
|
2022-11-27 19:52:10 +00:00
|
|
|
}
|
|
|
|
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.smaller-than(vars.$bp-m) {
|
2019-04-14 12:04:20 +01:00
|
|
|
#markdown-editor {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
#markdown-editor .markdown-editor-wrap {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
2019-12-22 14:21:18 +00:00
|
|
|
flex-grow: 1;
|
2022-11-28 14:08:20 +00:00
|
|
|
flex-basis: auto !important;
|
2023-08-30 02:41:51 +01:00
|
|
|
min-height: 0;
|
2019-04-14 12:04:20 +01:00
|
|
|
}
|
|
|
|
.editor-toolbar-label {
|
|
|
|
float: none !important;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(border-color, #DDD, #555);
|
2019-04-14 12:04:20 +01:00
|
|
|
display: block;
|
|
|
|
}
|
2019-12-22 14:21:18 +00: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 12:04:20 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#markdown-editor .markdown-editor-wrap:not(.active) {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 12:16:50 +01:00
|
|
|
.markdown-editor-display {
|
2020-04-11 15:48:08 +01:00
|
|
|
background-color: #fff;
|
2019-08-26 12:16:50 +01:00
|
|
|
body {
|
2021-08-22 18:30:46 +01:00
|
|
|
display: block;
|
2020-04-11 15:48:08 +01:00
|
|
|
background-color: #fff;
|
2024-04-05 15:06:08 +01:00
|
|
|
padding-inline-start: 12px;
|
|
|
|
padding-inline-end: 12px;
|
|
|
|
max-width: 864px;
|
2016-03-25 14:41:15 +00:00
|
|
|
}
|
2018-01-20 20:40:21 +00:00
|
|
|
[drawio-diagram]:hover {
|
2019-08-25 12:40:04 +01:00
|
|
|
outline: 2px solid var(--color-primary);
|
2018-01-20 20:40:21 +00:00
|
|
|
}
|
2016-03-25 14:41:15 +00:00
|
|
|
}
|
2018-01-20 20:40:21 +00:00
|
|
|
|
2020-04-11 15:48:08 +01:00
|
|
|
html.markdown-editor-display.dark-mode {
|
|
|
|
background-color: #222;
|
|
|
|
body {
|
|
|
|
background-color: #222;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-29 18:25:54 +01:00
|
|
|
.editor-toolbar {
|
2022-11-27 19:52:10 +00:00
|
|
|
height: 32px;
|
2016-03-29 18:25:54 +01:00
|
|
|
width: 100%;
|
|
|
|
font-size: 11px;
|
|
|
|
line-height: 1.6;
|
2023-10-14 16:33:48 +01:00
|
|
|
border-bottom: 1px solid #CCC;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(background-color, #FFF, #333);
|
|
|
|
@include mixins.lightDark(border-color, #CCC, #000);
|
2016-03-29 18:25:54 +01:00
|
|
|
flex: none;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.whenDark {
|
2020-04-11 15:48:08 +01:00
|
|
|
button {
|
|
|
|
color: #AAA;
|
|
|
|
}
|
|
|
|
}
|
2016-03-29 18:25:54 +01:00
|
|
|
}
|
|
|
|
|
2022-11-27 20:30:14 +00:00
|
|
|
.editor-toolbar .buttons {
|
2024-12-09 13:25:35 +00:00
|
|
|
font-size: vars.$fs-m;
|
2022-11-27 20:30:14 +00:00
|
|
|
.dropdown-menu {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.toggle-switch {
|
2024-12-09 13:25:35 +00:00
|
|
|
margin: vars.$s 0;
|
2022-11-27 20:30:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-27 19:52:10 +00:00
|
|
|
.editor-toolbar .buttons button {
|
|
|
|
font-size: .9rem;
|
|
|
|
width: 2rem;
|
|
|
|
text-align: center;
|
|
|
|
border-left: 1px solid;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(border-color, #DDD, #555);
|
2022-11-27 19:52:10 +00:00
|
|
|
svg {
|
|
|
|
margin-inline-end: 0;
|
|
|
|
}
|
|
|
|
&:hover {
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(background-color, #DDD, #222);
|
2022-11-27 19:52:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-25 14:41:15 +00:00
|
|
|
|
2015-07-12 20:01:42 +01:00
|
|
|
label {
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(color, #666, #ddd);
|
2015-07-12 20:01:42 +01:00
|
|
|
display: block;
|
|
|
|
line-height: 1.4em;
|
2015-08-30 15:31:16 +01:00
|
|
|
font-size: 0.94em;
|
2017-08-26 13:24:55 +01:00
|
|
|
font-weight: 400;
|
2015-08-30 15:31:16 +01:00
|
|
|
padding-bottom: 2px;
|
2015-09-05 17:42:05 +01:00
|
|
|
margin-bottom: 0.2em;
|
2015-10-22 20:23:39 +01:00
|
|
|
&.inline {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2015-07-12 20:01:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
label.radio, label.checkbox {
|
|
|
|
font-weight: 400;
|
2017-04-15 15:04:30 +01:00
|
|
|
user-select: none;
|
2015-07-12 20:01:42 +01:00
|
|
|
input[type="radio"], input[type="checkbox"] {
|
2024-12-09 13:25:35 +00:00
|
|
|
margin-inline-end: vars.$xs;
|
2015-07-12 20:01:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-15 15:04:30 +01:00
|
|
|
label.inline.checkbox {
|
2024-12-09 13:25:35 +00:00
|
|
|
margin-inline-end: vars.$m;
|
2017-04-15 15:04:30 +01:00
|
|
|
}
|
|
|
|
|
2015-09-05 17:42:05 +01:00
|
|
|
label + p.small {
|
|
|
|
margin-bottom: 0.8em;
|
|
|
|
}
|
|
|
|
|
2017-04-15 15:04:30 +01:00
|
|
|
table.form-table {
|
|
|
|
max-width: 100%;
|
|
|
|
td {
|
|
|
|
overflow: hidden;
|
2024-12-09 13:25:35 +00:00
|
|
|
padding: math.div(vars.$xxs, 2) 0;
|
2017-04-15 15:04:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-06 14:05:06 +01: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 20:01:42 +01:00
|
|
|
@extend .input-base;
|
|
|
|
}
|
|
|
|
|
2021-04-27 21:35:42 +01:00
|
|
|
select {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23666666'><polygon points='0,0 100,0 50,50'/></svg>");
|
2022-10-11 15:41:21 +01:00
|
|
|
background-size: 10px 12px;
|
|
|
|
background-position: calc(100% - 20px) 64%;
|
2021-04-27 21:35:42 +01:00
|
|
|
background-repeat: no-repeat;
|
2022-09-06 21:30:28 +01:00
|
|
|
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.rtl {
|
2022-09-06 21:30:28 +01:00
|
|
|
background-position: 20px 70%;
|
|
|
|
}
|
2021-04-27 21:35:42 +01:00
|
|
|
}
|
|
|
|
|
2017-04-15 15:04:30 +01:00
|
|
|
input[type=date] {
|
|
|
|
width: 190px;
|
|
|
|
}
|
|
|
|
|
2019-06-06 14:05:06 +01:00
|
|
|
input[type=color] {
|
|
|
|
height: 60px;
|
2019-12-07 21:23:15 +00:00
|
|
|
&.small {
|
|
|
|
height: 42px;
|
|
|
|
width: 60px;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
2019-06-06 14:05:06 +01:00
|
|
|
}
|
|
|
|
|
2015-10-18 17:29:26 +01:00
|
|
|
.toggle-switch {
|
|
|
|
user-select: none;
|
2019-02-02 15:49:57 +00:00
|
|
|
display: inline-grid;
|
2024-12-09 13:25:35 +00:00
|
|
|
grid-template-columns: (16px + vars.$s) 1fr;
|
2019-02-02 15:49:57 +00:00
|
|
|
align-items: center;
|
2024-12-09 13:25:35 +00:00
|
|
|
margin: vars.$m 0;
|
2019-02-02 15:49:57 +00:00
|
|
|
.custom-checkbox {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
border-radius: 2px;
|
|
|
|
display: inline-block;
|
2019-02-03 13:45:45 +00:00
|
|
|
border: 2px solid currentColor;
|
2019-02-02 15:49:57 +00:00
|
|
|
overflow: hidden;
|
2019-02-03 13:45:45 +00:00
|
|
|
fill: currentColor;
|
2019-02-02 15:49:57 +00: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 17:29:26 +01:00
|
|
|
}
|
|
|
|
}
|
2019-02-02 15:49:57 +00: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 13:45:45 +00:00
|
|
|
opacity: 0.8;
|
2015-10-22 20:23:39 +01:00
|
|
|
}
|
2022-10-02 18:09:48 +01:00
|
|
|
input[type=checkbox][disabled] ~ * {
|
|
|
|
opacity: 0.8;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
input[type=checkbox][disabled] ~ .custom-checkbox {
|
|
|
|
border-color: #999;
|
|
|
|
color: #999 !important;
|
|
|
|
background: #f2f2f2;
|
|
|
|
}
|
2015-10-22 20:23:39 +01:00
|
|
|
}
|
2019-02-03 17:34:15 +00:00
|
|
|
.toggle-switch-list {
|
|
|
|
.toggle-switch {
|
2024-12-09 13:25:35 +00:00
|
|
|
margin: vars.$xs 0;
|
2019-02-03 17:34:15 +00:00
|
|
|
}
|
|
|
|
&.compact .toggle-switch {
|
|
|
|
margin: 1px 0;
|
|
|
|
}
|
2019-02-03 13:45:45 +00:00
|
|
|
}
|
2015-10-18 17:29:26 +01:00
|
|
|
|
2015-07-12 20:01:42 +01:00
|
|
|
.form-group {
|
2024-12-09 13:25:35 +00:00
|
|
|
margin-bottom: vars.$s;
|
2019-02-02 15:49:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.setting-list > div {
|
|
|
|
border-bottom: 1px solid #DDD;
|
2024-12-09 13:25:35 +00:00
|
|
|
padding: vars.$xl 0;
|
2019-02-02 15:49:57 +00:00
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
2016-05-22 11:01:21 +01:00
|
|
|
}
|
2015-07-12 20:01:42 +01:00
|
|
|
}
|
2019-02-02 15:49:57 +00:00
|
|
|
.setting-list-label {
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(color, #222, #DDD);
|
2019-03-16 16:00:41 +00:00
|
|
|
color: #222;
|
2019-02-02 15:49:57 +00:00
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
.setting-list-label + p.small {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2019-02-03 13:45:45 +00:00
|
|
|
.setting-list-label + .grid {
|
2024-12-09 13:25:35 +00:00
|
|
|
margin-top: vars.$m;
|
2019-02-03 13:45:45 +00:00
|
|
|
}
|
2019-02-03 17:34:15 +00:00
|
|
|
|
|
|
|
.setting-list .grid, .stretch-inputs {
|
2019-02-03 13:45:45 +00:00
|
|
|
input[type=text], input[type=email], input[type=password], select {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2015-07-15 22:55:49 +01:00
|
|
|
|
2018-03-18 15:13:46 +00:00
|
|
|
.simple-code-input {
|
|
|
|
background-color: #F8F8F8;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 12px;
|
|
|
|
min-height: 100px;
|
2019-02-02 15:49:57 +00:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2018-03-18 15:13:46 +00:00
|
|
|
}
|
|
|
|
|
2015-08-16 00:18:22 +01:00
|
|
|
.form-group {
|
2019-04-21 14:11:49 +01:00
|
|
|
div.text-pos, div.text-neg, p.text-post, p.text-neg {
|
2024-12-09 13:25:35 +00:00
|
|
|
padding: vars.$xs 0;
|
2015-08-16 00:18:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-15 16:04:46 +00:00
|
|
|
.form-group.collapsible {
|
2024-12-09 13:25:35 +00:00
|
|
|
padding: 0 vars.$m;
|
2022-07-24 12:23:25 +01:00
|
|
|
border: 1px solid;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(border-color, #DDD, #000);
|
2018-12-09 16:51:31 +00:00
|
|
|
border-radius: 4px;
|
2017-12-10 13:46:50 +00:00
|
|
|
.collapse-title {
|
2024-12-09 13:25:35 +00:00
|
|
|
margin-inline-start: -(vars.$m);
|
|
|
|
margin-inline-end: -(vars.$m);
|
|
|
|
padding: vars.$s vars.$m;
|
2019-08-25 15:44:51 +01:00
|
|
|
display: block;
|
|
|
|
width: calc(100% + 32px);
|
2020-04-05 13:07:19 +01:00
|
|
|
text-align: start;
|
2017-12-10 13:46:50 +00: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: '▸';
|
2024-12-09 13:25:35 +00:00
|
|
|
margin-inline-end: vars.$m;
|
2017-12-10 13:46:50 +00:00
|
|
|
transition: all ease-in-out 400ms;
|
|
|
|
transform: rotate(0);
|
|
|
|
}
|
|
|
|
.collapse-content {
|
|
|
|
display: none;
|
2024-12-09 13:25:35 +00:00
|
|
|
padding-bottom: vars.$m;
|
2017-12-10 13:46:50 +00:00
|
|
|
}
|
|
|
|
&.open .collapse-title label:before {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-19 09:35:09 +02:00
|
|
|
.form-group.ambrosia-container, .form-group.ambrosia-container * {
|
2024-04-21 16:08:28 +02:00
|
|
|
position:absolute !important;
|
|
|
|
height:1px !important;
|
|
|
|
width:1px !important;
|
|
|
|
margin:-1px !important;
|
2024-04-19 09:35:09 +02:00
|
|
|
padding:0 !important;
|
|
|
|
background:transparent !important;
|
|
|
|
color:transparent !important;
|
|
|
|
border:none !important;
|
2024-04-21 16:08:28 +02:00
|
|
|
overflow: hidden !important;
|
|
|
|
clip: rect(0,0,0,0) !important;
|
2024-04-21 17:44:01 +02:00
|
|
|
white-space: nowrap !important;
|
2024-04-19 09:35:09 +02:00
|
|
|
}
|
|
|
|
|
2022-05-17 13:37:43 +01:00
|
|
|
.title-input input[type="text"] {
|
2015-07-15 22:55:49 +01:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2024-12-09 13:25:35 +00:00
|
|
|
padding: vars.$s;
|
2015-07-15 22:55:49 +01:00
|
|
|
margin-top: 0;
|
2017-08-26 13:24:55 +01:00
|
|
|
font-size: 2em;
|
2022-05-17 13:37:43 +01:00
|
|
|
height: auto;
|
2015-07-15 22:55:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.description-input textarea {
|
2022-05-17 13:37:43 +01:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2024-12-09 13:25:35 +00:00
|
|
|
padding: vars.$s;
|
|
|
|
font-size: vars.$fs-m;
|
2015-07-15 22:55:49 +01:00
|
|
|
color: #666;
|
2022-05-17 13:37:43 +01:00
|
|
|
height: auto;
|
2015-09-01 15:35:11 +01:00
|
|
|
}
|
|
|
|
|
2023-12-17 15:02:15 +00:00
|
|
|
.description-input > .tox-tinymce {
|
|
|
|
border: 1px solid #DDD !important;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(border-color, #DDD !important, #000 !important);
|
2023-12-17 15:02:15 +00:00
|
|
|
border-radius: 3px;
|
|
|
|
.tox-toolbar__primary {
|
|
|
|
justify-content: end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-01 15:35:11 +01:00
|
|
|
.search-box {
|
2015-09-06 15:03:37 +01:00
|
|
|
max-width: 100%;
|
|
|
|
position: relative;
|
2022-11-14 10:24:14 +00:00
|
|
|
button[tabindex="-1"] {
|
2015-09-01 15:35:11 +01:00
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(color, #666, #AAA);
|
2015-09-01 15:35:11 +01:00
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
2017-08-19 15:33:22 +01:00
|
|
|
position: absolute;
|
2024-09-27 16:01:01 +01:00
|
|
|
inset-inline-start: 8px;
|
|
|
|
top: 10px;
|
2015-09-01 15:35:11 +01:00
|
|
|
}
|
|
|
|
input {
|
2017-08-19 15:33:22 +01:00
|
|
|
display: block;
|
2024-12-09 13:25:35 +00:00
|
|
|
padding: vars.$xs * 1.5;
|
|
|
|
padding-inline-start: vars.$l + 4px;
|
2015-09-01 15:35:11 +01:00
|
|
|
width: 300px;
|
2015-09-06 15:03:37 +01:00
|
|
|
max-width: 100%;
|
2022-05-14 16:05:29 +01:00
|
|
|
height: auto;
|
2015-09-01 15:35:11 +01:00
|
|
|
}
|
2019-03-30 14:27:00 +00:00
|
|
|
&.flexible input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2022-12-02 13:10:57 +01:00
|
|
|
button.search-box-cancel {
|
2019-04-13 11:09:17 +01:00
|
|
|
left: auto;
|
|
|
|
right: 0;
|
|
|
|
}
|
2015-10-22 20:23:39 +01:00
|
|
|
}
|
|
|
|
|
2023-05-29 15:50:36 +01:00
|
|
|
.contained-search-box {
|
|
|
|
display: flex;
|
|
|
|
height: 38px;
|
|
|
|
z-index: -1;
|
|
|
|
&.floating {
|
2024-12-09 13:25:35 +00:00
|
|
|
box-shadow: vars.$bs-med;
|
2023-05-29 15:50:36 +01:00
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.whenDark {
|
2023-05-29 15:50:36 +01:00
|
|
|
border: 1px solid #000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
input, button {
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 0;
|
|
|
|
border: 1px solid #ddd;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(border-color, #ddd, #000);
|
2023-05-29 15:50:36 +01:00
|
|
|
margin-inline-start: -1px;
|
|
|
|
&:last-child {
|
|
|
|
border-inline-end: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
input {
|
|
|
|
border: 0;
|
|
|
|
flex: 5;
|
2024-12-09 13:25:35 +00:00
|
|
|
padding: vars.$xs vars.$s;
|
2023-05-29 15:50:36 +01:00
|
|
|
&:focus, &:active {
|
|
|
|
outline: 1px dotted var(--color-primary);
|
|
|
|
outline-offset: -2px;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
border: 0;
|
|
|
|
width: 48px;
|
|
|
|
border-inline-start: 1px solid #DDD;
|
|
|
|
background-color: #FFF;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(background-color, #FFF, #333);
|
|
|
|
@include mixins.lightDark(color, #444, #AAA);
|
2023-05-29 15:50:36 +01:00
|
|
|
}
|
|
|
|
button:focus {
|
|
|
|
outline: 1px dotted var(--color-primary);
|
|
|
|
outline-offset: -2px;
|
|
|
|
}
|
|
|
|
svg {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.smaller-than(vars.$bp-s) {
|
2023-05-29 15:50:36 +01:00
|
|
|
width: 180px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-13 13:25:30 +01:00
|
|
|
.outline > input {
|
2016-05-13 21:20:21 +01:00
|
|
|
border: 0;
|
|
|
|
border-bottom: 2px solid #DDD;
|
|
|
|
border-radius: 0;
|
|
|
|
&:focus, &:active {
|
|
|
|
border: 0;
|
|
|
|
border-bottom: 2px solid #AAA;
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-06 00:15:03 +01:00
|
|
|
|
2016-03-13 14:00:24 +00:00
|
|
|
.image-picker img {
|
|
|
|
background-color: #BBB;
|
2019-05-06 00:15:03 +01:00
|
|
|
max-width: 100%;
|
2018-02-26 11:31:11 +00:00
|
|
|
}
|
2019-08-25 15:44:51 +01: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);
|
2022-11-08 21:17:45 +00:00
|
|
|
}
|
|
|
|
|
2024-10-29 14:21:32 +00:00
|
|
|
.custom-simple-file-input {
|
|
|
|
max-width: 100%;
|
|
|
|
border: 1px solid;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(border-color, #DDD, #666);
|
2024-10-29 14:21:32 +00:00
|
|
|
border-radius: 4px;
|
2024-12-09 13:25:35 +00:00
|
|
|
padding: vars.$s vars.$m;
|
2024-10-29 14:21:32 +00:00
|
|
|
}
|
|
|
|
.custom-simple-file-input::file-selector-button {
|
|
|
|
background-color: transparent;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 0.8rem;
|
|
|
|
line-height: 1.4em;
|
2024-12-09 13:25:35 +00:00
|
|
|
padding: vars.$xs vars.$s;
|
2024-10-29 14:21:32 +00:00
|
|
|
border: 1px solid;
|
|
|
|
font-weight: 400;
|
|
|
|
outline: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
2024-12-09 13:25:35 +00:00
|
|
|
margin-right: vars.$m;
|
|
|
|
@include mixins.lightDark(color, #666, #AAA);
|
|
|
|
@include mixins.lightDark(border-color, #CCC, #666);
|
2024-10-29 14:21:32 +00:00
|
|
|
&:hover, &:focus, &:active {
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(color, #444, #BBB);
|
2024-10-29 14:21:32 +00:00
|
|
|
border: 1px solid #CCC;
|
|
|
|
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
background-color: #F2F2F2;
|
2024-12-09 13:25:35 +00:00
|
|
|
@include mixins.lightDark(background-color, #f8f8f8, #444);
|
2024-10-29 14:21:32 +00:00
|
|
|
filter: none;
|
|
|
|
}
|
|
|
|
&:active {
|
|
|
|
border-color: #BBB;
|
|
|
|
background-color: #DDD;
|
|
|
|
color: #666;
|
|
|
|
box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-08 21:17:45 +00:00
|
|
|
input.shortcut-input {
|
|
|
|
width: auto;
|
|
|
|
max-width: 120px;
|
|
|
|
height: auto;
|
2024-04-21 17:44:01 +02:00
|
|
|
}
|