mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 14:46:00 +08:00
48 lines
749 B
SCSS
48 lines
749 B
SCSS
.task-protocol {
|
|
.insert-step {
|
|
align-items: center;
|
|
color: $color-concrete;
|
|
cursor: pointer;
|
|
display: flex;
|
|
|
|
&::before,
|
|
&::after {
|
|
background-color: $color-concrete;
|
|
content: "";
|
|
display: inline-block;
|
|
flex-grow: 1;
|
|
height: 3px;
|
|
}
|
|
|
|
.fa-plus {
|
|
margin: 0 .5em;
|
|
}
|
|
|
|
&:hover {
|
|
color: $brand-primary;
|
|
|
|
&::before,
|
|
&::after {
|
|
background-color: $brand-primary;
|
|
}
|
|
}
|
|
}
|
|
.protocol-options-dropdown {
|
|
a {
|
|
cursor: pointer;
|
|
|
|
&.disabled {
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|
|
.tinymce-container {
|
|
display: flex;
|
|
width: 100%;
|
|
|
|
.tiny-mce-editor {
|
|
flex-basis: 100%;
|
|
}
|
|
}
|
|
}
|