summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/components/_versionController.scss
blob: 57610986c3d5bc15a577bd5a0996be9b65e3d274 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
.version-controller-bar {
  display: flex;
  min-height: 57px;
  border-bottom: 1px solid $tlv-light-gray;
  background-color: transparent;
  .vc-container {
    display: flex;
    flex: 1;
    align-self: center;
    background-color: transparent;
    justify-content: space-between;
    padding-left: 16px;
    padding-right: 40px;
    .version-status-container {
      display: flex;
      height: 30px;
      .version-selector {
        border: none;
        margin-top: 7px;
        padding-right: 10px;
        margin-right: 15px;
        margin-left: 10px;
        @extend .body-1;
      }
      .version-section {
        .form-group {
          margin-right: 20px;
          .input-options {
            border: none;
            .input-options-select {
              padding-top: 4px;
            }
          }
        }
      }
      .vc-status {
        display: flex;
        padding-left: 20px;
        border-left: $light-gray thin solid;
        .status-text {
          align-self: center;
          margin-top: 2px;
          @extend .heading-5;
          color: $dark-gray;
        }
      }
    }
    .save-submit-cancel-container {
      display: flex;
      height: 30px;
      .action-buttons {
        display: flex;
        padding: 0 13px;
        .version-control-buttons {
          display: flex;
        }
        .action-buttons-svg {
          padding-top: 5px;
          margin-right: 20px;
          padding-bottom: 5px;


          .svg-icon {
            fill: $dark-gray;
            &:hover {
              fill: $black;
            }
            &.__versionControllerLockClosed {
              margin-top: -3px;
            }
            &.__versionControllerLockOpen {
              margin-top: -6px;
            }
            &.__versionControllerSubmit {
              fill: $blue;
              &:hover {
                fill: $dark-blue;
              }
              &.disabled {
                fill: $dark-gray;
              }
            }
          }
          }




      }
      .vc-nav-item-close {
        display: flex;
        padding-left: 18px;
        padding-top: 3px;
        align-self: center;
        @extend .body-1;
        color: $gray;
        cursor: pointer;
        border-left: $gray thin solid;
      }
    }
  }
}