scinote-web/app/assets/stylesheets/steps/step.scss

268 lines
4.5 KiB
SCSS
Raw Normal View History

2022-04-26 20:20:50 +08:00
// scss-lint:disable SelectorDepth
// scss-lint:disable NestingDepth
2022-05-06 17:59:22 +08:00
@import "components/*";
2022-04-28 17:13:38 +08:00
.step-container {
2022-05-25 21:04:14 +08:00
border: $border-transparent;
2022-07-05 18:49:12 +08:00
margin: 6px 0 6px -1.5em;
2022-06-21 17:32:27 +08:00
padding: 8px 24px 8px 0;
2022-04-28 17:13:38 +08:00
.step-header {
align-items: center;
display: flex;
.step-collapse-link {
display: inline-block;
line-height: 24px;
text-align: center;
width: 24px;
&:not(.collapsed) {
@include rotate(90deg);
}
}
.step-state {
border: 2px solid $color-alto;
border-radius: 50%;
cursor: pointer;
height: 24px;
text-align: center;
width: 24px;
&.completed {
background: $brand-success;
border: 2px solid $brand-success;
&::after {
@include font-awesome;
color: $color-white;
content: $font-fas-check;
}
}
}
.step-position {
@include font-main;
2022-06-09 20:40:45 +08:00
flex-shrink: 0;
2022-07-05 18:49:12 +08:00
font-weight: bold;
2022-04-28 17:13:38 +08:00
line-height: 24px;
margin: 0 4px;
}
.step-name-container {
flex-grow: 1;
2022-07-05 18:49:12 +08:00
font-weight: bold;
2022-04-28 17:13:38 +08:00
}
.step-actions-container {
display: flex;
justify-content: flex-end;
.dropdown-menu {
white-space: nowrap;
}
.insert-button {
.caret {
margin-left: .5em;
}
}
.insert-element-dropdown {
@include font-button;
min-width: 230px;
padding: 0;
li {
padding: .5em 1em;
&.action {
cursor: pointer;
&:hover {
background: $color-concrete;
}
.fas {
margin-right: .5em;
}
}
&.title {
@include font-small;
color: $color-alto;
text-transform: uppercase;
}
}
}
2022-04-28 17:13:38 +08:00
}
}
2022-05-25 21:04:14 +08:00
2022-06-21 17:32:27 +08:00
.step-elements {
padding-left: 24px;
}
2022-05-25 21:04:14 +08:00
.comments-counter {
@include font-small;
align-items: center;
background-color: $color-concrete;
border: 2px solid $color-white;
border-radius: 8px;
display: flex;
height: 16px;
justify-content: center;
margin: 2px;
min-width: 16px;
position: absolute;
right: 0;
top: 0;
&.unseen {
background-color: $brand-complementary;
}
}
&.showing-comments {
border: 1px dotted $brand-primary;
}
2022-05-24 21:54:22 +08:00
.drop-message {
@include font-h3;
align-items: center;
color: $brand-primary;
display: none;
height: 100%;
justify-content: center;
left: 0;
pointer-events: none;
position: absolute;
top: 0;
width: 100%;
}
&.draging-file {
background-color: $brand-focus-light;
position: relative;
.drop-message {
display: flex;
flex-direction: column;
2022-05-24 21:54:22 +08:00
}
> *:not(.drop-message) {
2022-05-24 21:54:22 +08:00
opacity: 0;
pointer-events: none;
}
}
.storage-usage {
@include font-small;
color: $color-black;
.progress-container {
background-color: $color-white;
border-radius: 2px;
height: 4px;
margin: 1em 0;
overflow: hidden;
position: relative;
.progress-bar {
background-color: $brand-primary;
height: 100%;
position: relative;
transition: 1s $timing-function-sharp;
}
}
}
2022-04-26 20:20:50 +08:00
}
.step-element-header {
align-items: center;
display: flex;
min-height: 40px;
position: relative;
&.editing-name {
.step-element-controls {
display: none;
}
}
.sci-inline-edit {
width: 100%;
}
.step-element-name {
font-weight: bold;
width: 100%;
.step-element-number {
display: inline-block;
margin-right: 8px;
}
}
.step-element-controls {
2022-05-24 21:54:22 +08:00
background: linear-gradient(
90deg,
transparent,
$color-concrete 15%,
$color-concrete 100%
);
display: flex;
margin-left: auto;
position: absolute;
2022-06-09 20:40:45 +08:00
right: 0;
.fas {
font-size: 14px;
}
}
.step-element-grip {
color: $color-silver-chalice;
cursor: grab;
2022-06-21 17:32:27 +08:00
padding: .5em;
}
.step-element-controls,
.step-element-grip {
opacity: 0;
}
&:hover:not(.locked) {
background: $color-concrete;
.step-element-grip,
.step-element-controls {
opacity: 1;
}
}
}
.sci-reorderable-items {
.modal-body {
padding-top: 0;
}
.step-element-header {
border-bottom: 1px solid $color-concrete;
&:hover:not(.locked) {
background-color: $color-white;
}
.step-element-name {
font-weight: normal;
}
.fas {
margin-right: 0.5em;
}
}
}