blob: 3a2168aeb0d00e35516195076d0e4bd61d9fd648 (
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
|
@import './../../../../../assets/styles/variables.less';
@circle_size: 13px;
.custom-modal{
font-family: @font-opensans-regular;
}
/deep/ multi-steps-wizard {
display: none;
}
.ng2-modal-header{
border: none !important;
}
.ng2-modal-body{
padding-top: 0 !important;
}
header{
margin-bottom: 10px;
.dynamic-header-container{
position: relative;
top: -9px;
}
.steps-header{
display: flex;
.step-title{
flex: 1;
.title-text{
width: 100%;
text-align: center;
line-height: 40px;
background-color: @tlv_color_u;
font-size: 13px;
}
.line{
width: calc(~'100% - @{circle_size}');
position: relative;
left: calc(~'(100% - @{circle_size})/2 * (-1)');
float: left;
height: 2px;
.inner-line{
background-color: @main_color_a;
height: 100%;
}
}
.circle{
margin:0 auto;
border: @main_color_o solid 1px;
height: @circle_size;
width: @circle_size;
border-radius: 50%;
position: relative;
top: -@circle_size/2;
background-color: @main_color_p;
z-index: 1;
}
.full-circle{
border-color: @main_color_a;
background-color: @main_color_a;
}
&.active{
color: @main_color_a;
font-family: @font-opensans-medium;
.circle{
border-color: @main_color_a;
}
}
}
}
}
.navigation-buttons{
padding-left: 6px;
border-left: 1px solid @main_color_a;
.navigation-button{
padding: 0 8px;
.navigation-icon{
margin: 3px 0;
&.blue-arrow-back{
float: left;
}
&.white-arrow-next{
float: right;
}
}
}
}
|