scinote-web/app/assets/stylesheets/my_modules/protocol.scss
artoscinote 6352a4dd04
Implement protocol options dropdown [SCI-6750, SCI-6751] (#4066)
* Implement protocol options dropdown [SCI-6750, SCI-6751]

* Implement simple API error handling for step status update [SCI-6354]
2022-05-03 15:18:48 +02:00

41 lines
632 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;
}
}
}
}