2022-04-28 17:13:38 +08:00
|
|
|
.task-protocol {
|
|
|
|
.insert-step {
|
|
|
|
align-items: center;
|
|
|
|
color: $color-concrete;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
background-color: $color-concrete;
|
2022-04-26 20:20:50 +08:00
|
|
|
content: "";
|
2022-04-28 17:13:38 +08:00
|
|
|
display: inline-block;
|
|
|
|
flex-grow: 1;
|
|
|
|
height: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-plus {
|
|
|
|
margin: 0 .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $brand-primary;
|
|
|
|
|
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
background-color: $brand-primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-05-03 21:18:48 +08:00
|
|
|
.protocol-options-dropdown {
|
|
|
|
a {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
cursor: default;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-05-11 22:08:04 +08:00
|
|
|
.tinymce-container {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.tiny-mce-editor {
|
|
|
|
flex-basis: 100%;
|
|
|
|
}
|
|
|
|
}
|
2022-04-26 20:20:50 +08:00
|
|
|
}
|