2024-01-20 22:52:08 -05:00
|
|
|
|
.mark-editor {
|
|
|
|
|
[type=checkbox], [type=radio] {
|
|
|
|
|
margin-inline-end: .1em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-20 11:01:18 -04:00
|
|
|
|
#mark_date {
|
|
|
|
|
width: unset !important;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-04 12:37:37 -04:00
|
|
|
|
.mark-line {
|
|
|
|
|
margin-bottom: var(--pico-spacing);
|
|
|
|
|
|
|
|
|
|
>div:last-child {
|
|
|
|
|
margin-top: calc(-0.3rem * var(--pico-line-height));
|
2024-05-29 10:50:41 -04:00
|
|
|
|
text-align: center;
|
2023-06-04 12:37:37 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-15 19:51:42 +02:00
|
|
|
|
// make log list like a timeline list
|
|
|
|
|
// source: https://dev.to/peterc/how-to-create-joined-bulletpoint-lists-with-css-bbc-news-style-1eem
|
2023-07-17 19:00:29 -04:00
|
|
|
|
#log-list ul {
|
|
|
|
|
|
2023-07-15 14:49:59 +02:00
|
|
|
|
li {
|
2023-07-17 19:00:29 -04:00
|
|
|
|
list-style: none;
|
|
|
|
|
padding-bottom: 1rem;
|
|
|
|
|
border-left: 1px solid var(--pico-range-active-border-color);
|
2023-07-15 22:36:42 +02:00
|
|
|
|
position: relative;
|
2023-07-17 19:00:29 -04:00
|
|
|
|
padding-left: 0.75em;
|
|
|
|
|
margin-left: 1em;
|
|
|
|
|
margin-bottom: 0;
|
2023-07-15 14:58:01 +02:00
|
|
|
|
|
2023-07-15 22:36:42 +02:00
|
|
|
|
// The actual line being placed before each list item, tweak width and color as appropriate
|
|
|
|
|
&:before {
|
2023-07-17 19:00:29 -04:00
|
|
|
|
content: "";
|
|
|
|
|
width: 0.5em;
|
|
|
|
|
height: 0.5em;
|
|
|
|
|
border: 1px solid var(--pico-range-active-border-color);
|
|
|
|
|
background: var(--pico-background-color);
|
|
|
|
|
border-radius: 50%;
|
2023-07-15 22:36:42 +02:00
|
|
|
|
position: absolute;
|
2023-07-17 19:00:29 -04:00
|
|
|
|
left: -0.275em;
|
|
|
|
|
top: 0.5em;
|
2023-07-15 22:36:42 +02:00
|
|
|
|
}
|
2023-07-13 14:44:01 +02:00
|
|
|
|
|
2023-07-17 19:00:29 -04:00
|
|
|
|
&:last-child {
|
|
|
|
|
padding-bottom: 0;
|
2023-07-15 22:36:42 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-07-15 19:51:42 +02:00
|
|
|
|
|
|
|
|
|
|
2023-06-04 12:37:37 -04:00
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.mark-line {
|
|
|
|
|
|
|
|
|
|
>div,
|
|
|
|
|
>div:last-child {
|
|
|
|
|
margin-top: unset;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-20 11:01:18 -04:00
|
|
|
|
.tag-input {
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
display: -ms-flexbox;
|
|
|
|
|
display: flex;
|
|
|
|
|
-webkit-box-pack: start;
|
|
|
|
|
-ms-flex-pack: start;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
-ms-flex-wrap: wrap;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
border-bottom: 0.1rem solid #ccc;
|
|
|
|
|
padding-bottom: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tag-input__tag {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: block;
|
|
|
|
|
float: left;
|
|
|
|
|
color: white;
|
|
|
|
|
background: #d5d5d5;
|
|
|
|
|
padding: 5px 20px 5px 6px;
|
|
|
|
|
margin: 4px;
|
|
|
|
|
border-radius: .4rem;
|
|
|
|
|
line-height: 1em;
|
|
|
|
|
-webkit-transition: all 0.2s ease-in-out;
|
|
|
|
|
transition: all 0.2s ease-in-out;
|
|
|
|
|
height: min-content;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tag-input__tag.tag-input__tag--highlight {
|
|
|
|
|
color: white;
|
|
|
|
|
background: #00a1cc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tag-input__close {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border-radius: 0 2px 2px 0;
|
|
|
|
|
-webkit-transition: background 0.2s;
|
|
|
|
|
transition: background 0.2s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tag-input__close:after {
|
|
|
|
|
position: absolute;
|
|
|
|
|
content: "×";
|
|
|
|
|
top: 5px;
|
|
|
|
|
left: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tag-input__close:hover {
|
|
|
|
|
color: #606c76;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tag-input input {
|
|
|
|
|
border: 0;
|
|
|
|
|
margin: 4px;
|
|
|
|
|
padding: 3px 7px 3px 0;
|
|
|
|
|
width: auto;
|
|
|
|
|
outline: none;
|
|
|
|
|
height: unset;
|
|
|
|
|
}
|