blob: d75e7447ab6ba611adfd5c27704cec5389d1808b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
.edit-process-modal {
background-color: $white;
height: 100%;
&.modal-body {
padding: 0;
background-color: $white;
}
.vsp-processes-editor {
padding-left: 0;
padding-right: 0;
.editor-title {
@extend .heading-2;
color: $dark-gray;
padding-bottom: 50px;
}
.file-upload-box {
@extend .body-1;
display: flex;
text-align: center;
flex-direction: column;
justify-content: center;
border: 2px dashed $light-gray;
padding-top: 20px;
padding-bottom: 20px;
align-items: center;
.upload-btn {
padding: 4px 20px;
}
.drag-text {
color: $blue;
@extend .body-1-semibold;
}
.or-text {
margin-top: 10px;
margin-bottom: 10px;
}
}
.vsp-processes-editor-data {
transition: border .2s;
.vsp-process-dropzone-view {
background-color: transparent;
&.active-dragging {
border: 3px dashed $dark-blue;
border-radius: 20px;
.draggable-wrapper {
opacity: 0.5;
}
}
.grid-section {
.section-title {
padding-bottom: 0;
}
}
}
.validation-input-wrapper {
.form-group.vsp-process-description > textarea {
height: 113px;
}
}
}
}
}
.software-product-landing-view-right-side.vsp-processes-page {
overflow-y: initial;
.processes-list {
@extend .flex-column;
}
.list-editor-view {
.list-editor-view-list {
.list-editor-item-view {
.list-editor-item-view-content {
.list-editor-item-view-field {
.artifact-name {
@extend .body-1;
color: $light-green;
}
}
}
}
}
}
}
|