aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/drawingBoard/service-planning/drawing-board-header/drawing-board-header.component.scss
blob: 1242f9429b6f6ccb611f98a96e9a1b5ba820f617 (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
.drawing-board-header {
  height: 60px;
  font-family: OpenSans-Regular;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  box-shadow: 2px 2px 6px #D2D2D2;
  color: #191919;
  z-index: 1;
  position: relative;
    [class^="icon-"] {
      height: 60px;
      width: 60px;
      display: flex;
      align-items: center;
      text-align: center;
      color: #5A5A5A;
      cursor: pointer;
      &:before {
        font-size: 18px;
        width: 100%;
      }
      &:hover:before {
        color: #009FDB;
      }
    }
  .left-header {
      display: flex;
      align-items: center;
      .icon-back {
        justify-content: center;
        border-right: 1px solid #EAEAEA;
      }
      .vid-logo-small{
        background: url('../../../../assets/img/vid-logo.jpg') no-repeat;
        width: 60px;
        height: 60px;
      }
      .status{
        background: url('../../../../assets/img/indesign.svg') no-repeat  center;
        width: 24px;
        height: 24px;
        margin-left: 20px;
      }
      .header-col {
        border-right: 1px solid #d2d2d2;
        padding-right: 15px;
        margin-left: 15px;
        span{
          display: block;
        }
        &:after{
          content: "";
          background: #D2D2D2;
          height: 35px;
          width: 1px;
        }
      }
      .service-instance-label {
        font-family: OpenSans-Semibold;
        font-size: 13px;
        color: #5A5A5A;
      }
      .quantity-instance-label {
        font-family: OpenSans-Regular;
        font-size: 13px;
        color: #5A5A5A;
      }

      .labelPosition {
        margin-top: 4px;
        margin-bottom: 6px;
        font-size: 12px;
      }
      .service-instance-name {
        font-family: OpenSans-Semibold;
        color: #191919;
        background-color: white;
        font-size: 14px;
        &.deleted{
          text-decoration: line-through;
        }
      }
      .orch-status-value {
        font-family: OpenSans-Regular;
        font-size: 14px;
        color: #191919;
      }
      .scale-value {
        font-family: OpenSans-Regular;
        font-size: 14px;
        color: #191919;
      }
      .status {
        font-family: OpenSans-Semibold;
        line-height: 14px;
        font-size: 14px;
        text-align: center;
        width: 30px;
        margin-left: 13px;
        margin-right: 3px;
      }

      .purple {
        color: #9063CD;
      }

      .middleDetails {
        border-right: 1px solid #EAEAEA;
        margin-left: 0;
        height: 45px;
      }
    }
    .right-header {
      display: flex;
      align-items: center;
      .quantity-container {
        .quantity-label {
          padding-left: 10px;
          font-family: OpenSans-Semibold;
          font-size: 12px;
        }
        .quantity {
          padding: 5px 10px 5px 0;
          font-family: OpenSans-Semibold;
          font-size: 18px;
        }
      }
      .scale-container {
        .scale-label {
          padding-left: 10px;
          font-family: OpenSans-Semibold;
          font-size: 12px;
        }
        .scale {
          padding: 5px 10px 5px 0;
          font-family: OpenSans-Semibold;
          font-size: 18px;
        }
      }
      [class^="icon-"] {
        border-left: 1px solid #EAEAEA;
      }
      .menu-container {
        height: 100%;
        display: flex;
        background: none;
        border: none;
        padding: 0;
        outline: none;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        cursor: pointer;
      }
      .icon-browse:before {
        content: '\e924';
        display: inline-block;
        font-size: 24px;
      }
      .deploy-btn {
        color: #FFFFFF ;
        background: #009fdb;
        width: 128px;
        height: 100%;
        border: none;
        &[disabled] {
          cursor: not-allowed;
          opacity: .65;
          color: #99d6ec;
        }
      }
    }
  }