blob: 353c1151fcc9120c4346abf533967f1d899ae4ad [file] [log] [blame]
Ittay Stern6f900cc2018-08-29 17:01:32 +03001.drawing-board-header {
2 height: 60px;
3 font-family: OpenSans-Regular;
4 display: flex;
5 justify-content: space-between;
6 font-size: 14px;
7 box-shadow: 2px 2px 6px #D2D2D2;
8 color: #191919;
9 z-index: 1;
10 position: relative;
11 [class^="icon-"] {
12 height: 60px;
13 width: 60px;
14 display: flex;
15 align-items: center;
16 text-align: center;
17 color: #5A5A5A;
18 cursor: pointer;
19 &:before {
20 font-size: 18px;
21 width: 100%;
22 }
23 &:hover:before {
24 color: #009FDB;
25 }
26 }
27 .left-header {
28 display: flex;
29 align-items: center;
30 .icon-back {
31 justify-content: center;
32 border-right: 1px solid #EAEAEA;
33 }
34 .vid-logo-small{
35 background: url('../../../../assets/img/vid-logo.jpg') no-repeat;
36 width: 60px;
37 height: 60px;
38 }
39 .status{
40 background: url('../../../../assets/img/indesign.svg') no-repeat center;
41 width: 24px;
42 height: 24px;
43 margin-left: 20px;
44 }
45 .header-col {
46 border-right: 1px solid #d2d2d2;
47 padding-right: 15px;
48 margin-left: 15px;
49 span{
50 display: block;
51 }
52 &:after{
53 content: "";
54 background: #D2D2D2;
55 height: 35px;
56 width: 1px;
57 }
58 }
59 .service-instance-label {
60 font-family: OpenSans-Semibold;
61 font-size: 13px;
62 color: #5A5A5A;
63 }
64 .quantity-instance-label {
65 font-family: OpenSans-Regular;
66 font-size: 13px;
67 color: #5A5A5A;
68 }
69
70 .labelPosition {
71 margin-top: 4px;
72 margin-bottom: 6px;
73 font-size: 12px;
74 }
75 .service-instance-name {
76 font-family: OpenSans-Semibold;
77 color: #191919;
78 background-color: white;
79 font-size: 14px;
80 &.deleted{
81 text-decoration: line-through;
82 }
83 }
84 .orch-status-value {
85 font-family: OpenSans-Regular;
86 font-size: 14px;
87 color: #191919;
Ittay Sternf7926712019-07-07 19:23:03 +030088 &.tag-status-value {
89 background: #009fdb;
90 color: white;
91 border-radius: 2px;
92 text-align: center;
93 padding: 5px;
94 }
Ittay Stern6f900cc2018-08-29 17:01:32 +030095 }
96 .scale-value {
97 font-family: OpenSans-Regular;
98 font-size: 14px;
99 color: #191919;
100 }
101 .status {
102 font-family: OpenSans-Semibold;
103 line-height: 14px;
104 font-size: 14px;
105 text-align: center;
106 width: 30px;
107 margin-left: 13px;
108 margin-right: 3px;
109 }
110
111 .purple {
112 color: #9063CD;
113 }
114
115 .middleDetails {
116 border-right: 1px solid #EAEAEA;
117 margin-left: 0;
118 height: 45px;
119 }
120 }
Ittay Sternf7926712019-07-07 19:23:03 +0300121
Ittay Stern6f900cc2018-08-29 17:01:32 +0300122 .right-header {
123 display: flex;
124 align-items: center;
Ittay Sternf7926712019-07-07 19:23:03 +0300125 .action-status-type-header {
126 background: transparent;
127 font-family: OpenSans-SemiBold;
128 font-size: 12px;
129 border-radius: 50px;
130 border: 1px solid gray;
131 padding: 5px 20px;
132 margin-right: 10px;
133 &.delete {
134 color: red;
135 }
136 &.resume {
137 color: #009fdb;
138 }
139 }
Ittay Stern6f900cc2018-08-29 17:01:32 +0300140 .quantity-container {
141 .quantity-label {
142 padding-left: 10px;
143 font-family: OpenSans-Semibold;
144 font-size: 12px;
145 }
146 .quantity {
147 padding: 5px 10px 5px 0;
148 font-family: OpenSans-Semibold;
149 font-size: 18px;
150 }
151 }
152 .scale-container {
153 .scale-label {
154 padding-left: 10px;
155 font-family: OpenSans-Semibold;
156 font-size: 12px;
157 }
158 .scale {
159 padding: 5px 10px 5px 0;
160 font-family: OpenSans-Semibold;
161 font-size: 18px;
162 }
163 }
164 [class^="icon-"] {
165 border-left: 1px solid #EAEAEA;
166 }
167 .menu-container {
168 height: 100%;
169 display: flex;
170 background: none;
171 border: none;
172 padding: 0;
173 outline: none;
174 justify-content: center;
175 flex-direction: column;
176 text-align: center;
177 cursor: pointer;
178 }
179 .icon-browse:before {
180 content: '\e924';
181 display: inline-block;
182 font-size: 24px;
183 }
184 .deploy-btn {
185 color: #FFFFFF ;
186 background: #009fdb;
187 width: 128px;
188 height: 100%;
189 border: none;
190 &[disabled] {
191 cursor: not-allowed;
192 opacity: .65;
193 color: #99d6ec;
194 }
195 }
196 }
197 }
198
199