blob: 928343d43582c0a63c92c4c19547df2c6c5d0c8d (
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
|
#service-instance-details {
position: relative;
#notification-area {
color: #959595;
font-size: 12px;
position: absolute;
top: 3px;
left: 30px;
}
height: 100%;
overflow: auto;
padding: 30px;
/deep/ {
.form-control {
border-radius: 2px;
box-shadow: none;
border-color: #D2D2D2;
}
label {
font-family: OpenSans-Semibold;
font-size: 12px;
}
select {
@extend .form-control;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: url('../../../../assets/img/chevron.svg') 0 0 no-repeat;
background-size: 24px;
background-position-x: right;
background-position-y: center;
font-family: OpenSans-Italic;
font-size: 14px;
color: #959595;
height: 38px;
}
input:not([type='checkbox']) {
@extend .form-control;
height: 38px;
}
.form-control[disabled], fieldset[disabled] .form-control {
opacity: 0.5;
}
.input-text {
border: 1px solid #D2D2D2;
border-radius: 2px;
}
.details-item {
margin-bottom: 20px;
}
}
.checkbox-label {
font-family: OpenSans-Regular;
}
}
|