2019-05-13 16:45:12 +08:00
|
|
|
// scss-lint:disable SelectorDepth
|
|
|
|
// scss-lint:disable NestingDepth
|
|
|
|
|
|
|
|
@import "constants";
|
|
|
|
@import "mixins";
|
|
|
|
|
2022-05-27 18:49:10 +08:00
|
|
|
.content-pane.protocols-show {
|
|
|
|
background-color: $color-alto;
|
|
|
|
margin: 0 -16px;
|
2022-06-07 18:10:10 +08:00
|
|
|
min-height: calc(100vh - var(--navbar-height));
|
2022-05-27 18:49:10 +08:00
|
|
|
overflow: hidden;
|
|
|
|
padding: 36px 10px 10px;
|
|
|
|
width: calc(100% + 31px);
|
|
|
|
|
|
|
|
.protocol-position-container {
|
|
|
|
background-color: $color-white;
|
|
|
|
box-shadow: $flyout-shadow;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 900px;
|
2022-06-22 00:20:52 +08:00
|
|
|
padding: 10px 10px 10px 26px;
|
2022-05-27 18:49:10 +08:00
|
|
|
}
|
|
|
|
|
2022-06-22 00:20:52 +08:00
|
|
|
.protocol-metadata {
|
|
|
|
margin-bottom: 2em;
|
2019-11-20 21:57:53 +08:00
|
|
|
|
2022-06-22 00:20:52 +08:00
|
|
|
.authors-data {
|
2019-11-12 18:26:18 +08:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
|
2022-06-22 00:20:52 +08:00
|
|
|
.authors-list {
|
|
|
|
flex-basis: calc(100% - 70px);
|
2019-11-12 18:26:18 +08:00
|
|
|
flex-grow: 1;
|
2022-06-22 00:20:52 +08:00
|
|
|
margin-left: .5em;
|
2019-11-12 18:26:18 +08:00
|
|
|
}
|
|
|
|
|
2022-06-22 00:20:52 +08:00
|
|
|
* {
|
|
|
|
flex-shrink: 0;
|
2019-11-12 18:26:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-22 00:20:52 +08:00
|
|
|
.keywords-data {
|
2019-11-20 21:57:53 +08:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
|
2022-06-22 00:20:52 +08:00
|
|
|
.keywords-list {
|
|
|
|
flex-basis: calc(100% - 90px);
|
2019-11-20 21:57:53 +08:00
|
|
|
flex-grow: 1;
|
2022-06-22 00:20:52 +08:00
|
|
|
margin-left: .5em;
|
2019-11-20 21:57:53 +08:00
|
|
|
|
2022-06-22 00:20:52 +08:00
|
|
|
.input-field {
|
|
|
|
border-color: transparent;
|
2019-11-20 21:57:53 +08:00
|
|
|
|
2022-06-22 00:20:52 +08:00
|
|
|
&:hover {
|
|
|
|
border-color: initial;
|
2019-11-20 21:57:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-22 00:20:52 +08:00
|
|
|
|
|
|
|
* {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
2019-11-12 18:26:18 +08:00
|
|
|
}
|
|
|
|
}
|
2022-06-22 00:20:52 +08:00
|
|
|
|
|
|
|
.protocol-description {
|
|
|
|
margin-bottom: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.protocol-step-actions {
|
2022-07-05 18:49:12 +08:00
|
|
|
margin-left: -6px;
|
2022-06-22 00:20:52 +08:00
|
|
|
margin-top: 2em;
|
|
|
|
}
|
2019-05-13 16:45:12 +08:00
|
|
|
}
|
2022-04-26 20:13:17 +08:00
|
|
|
|
2022-06-22 00:20:52 +08:00
|
|
|
|
2022-04-26 20:13:17 +08:00
|
|
|
.protocol-content {
|
|
|
|
.protocol-name {
|
|
|
|
font-size: 1.7em;
|
2022-07-13 18:37:57 +08:00
|
|
|
font-weight: bold;
|
2022-04-26 20:13:17 +08:00
|
|
|
margin-bottom: 32px;
|
|
|
|
margin-top: 28px;
|
|
|
|
}
|
|
|
|
}
|
2022-06-24 17:21:47 +08:00
|
|
|
|
|
|
|
.delete-steps-modal {
|
|
|
|
.btn {
|
|
|
|
float: initial;
|
|
|
|
}
|
|
|
|
}
|