blob: 72fa6e813fa25a790608fada5944282586c3adb6 (
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
|
@import '../../../../../assets/styles/sprite-proxy-services-icons';
@import '../../../../../assets/styles/variables';
.header-main-container{
background-color: #f8f8f8;
width: 100%;
height: 100px;
display: flex;
.inner-container{
margin: 0 auto;
display: flex;
}
}
.selected {
color: @main_color_a;
}
.node{
display: flex;
&.from-node{
text-align: right;
}
&.to-node{
text-align: left;
}
&.selected{
.icon{
border: solid 3px @main_color_a;
padding: 4px;
border-radius: 50%;
background-color: @main_color_p;
}
}
.icon{
margin: auto 0;
display: flex;
}
.text{
font-family: @font-opensans-medium;
margin: auto 10px;
min-width: 450px;
.node-name{
font-size: 11px;
}
.selected-req-or-cap{
font-size: 14px;
}
}
}
.connection{
width: 67px;
height: 0px;
border-bottom: dashed 2px #979797;
margin: auto 0;
}
|