aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/modules/_softwareProductProcessesPage.scss
blob: 167dad92e256975ba853c68e308edc0539e6e45c (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: 20px;
        padding-top: 7px;
        padding-bottom: 3px;
      }
      .drag-text {
        color: $blue;
        font-weight: bolder;
      }
      .or-text {
        margin-top: 10px;
        margin-bottom: 10px;
      }
    }
    .vsp-processes-editor-data {
      padding: 28px 54px;
      transition: border .2s;
      .vsp-process-dropzone-view {
        background-color: transparent;
        padding: 15px;
        &.active-dragging {
          border: 3px dashed $dark-blue;
          border-radius: 20px;
          .draggable-wrapper {
            opacity: 0.5;
          }
        }
      }
      .validation-input-wrapper {
        .form-group {
          .vsp-process-description {
            height: 200px;
          }
        }
      }
    }
  }
}

.vsp-processes-page {
  .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;
            }
          }
        }
      }
    }
  }
}