-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpalladio-graph-view.css
142 lines (117 loc) · 2.64 KB
/
palladio-graph-view.css
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
[data-palladio-graph-view] {
width: 100%;
height: 100%;
position: relative;
z-index: 0;
}
.leaflet-bar a {
background-color: #fff;
border-bottom: 1px solid #ccc;
width: 26px;
height: 26px;
line-height: 26px;
display: block;
text-align: center;
text-decoration: none;
color: black;
}
[data-palladio-graph-view] .leaflet-bar {
box-shadow: none;
-webkit-border-radius: 2px;
border-radius: 2px;
}
[data-palladio-graph-view] .leaflet-control-zoom, .leaflet-control-layers {
border: none;
}
[data-palladio-graph-view] .leaflet-bar a:first-child {
-webkit-border-top-left-radius: 2px;
border-top-left-radius: 2px;
-webkit-border-top-right-radius: 2px;
border-top-right-radius: 2px;
}
[data-palladio-graph-view] .leaflet-bar a:last-child {
-webkit-border-bottom-left-radius: 2px;
border-bottom-left-radius: 2px;
-webkit-border-bottom-right-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom: none;
}
[data-palladio-graph-view] .node {
cursor: pointer;
}
[data-palladio-graph-view] .node:hover {
fill: #DDD;
fill-opacity: 1;
}
[data-palladio-graph-view] .anchor-node.strong {
font-weight: 600;
}
[data-palladio-graph-view] .node {
fill: #bbbbbb;
stroke: #eee;
stroke-width: 2px;
fill-opacity: .95;
}
[data-palladio-graph-view] .node.highlighted {
fill: #666;
}
[data-palladio-graph-view] rect.overlay {
cursor:hand;
cursor:grab;
cursor:-moz-grab;
cursor:-webkit-grab;
}
[data-palladio-graph-view] .hidden {
opacity: .1;
}
[data-palladio-graph-view] .link.hidden {
display: none;
}
[data-palladio-graph-view] .metrics {
position: fixed;
top: 140px;
right: 0px;
left: 0px;
z-index: 1100;
}
[data-palladio-graph-view] .metrics.closed {
left: inherit;
width: 70px;
}
[data-palladio-graph-view] .metrics.closed .panel {
height: 40px;
}
[data-palladio-graph-view] .metrics.closed .panel > * {
display: none;
}
[data-palladio-graph-view] .metrics .panel {
border: none;
box-shadow: 0px 1px 2px rgba(0,0,0,.1);
background: rgba(255,255,255,.95);
}
[data-palladio-graph-view] .metric-table {
overflow-y: scroll;
height: 500px;
}
[data-palladio-graph-view] .metrics .panel-body {
margin-right: 40px;
padding-right: 0px;
}
[data-palladio-graph-view] .metrics .panel-heading {
background-color: #fafafa;
border: none;
}
[data-palladio-graph-view] th {
min-width: 100px;
}
[data-palladio-graph-view] .metrics-toggle {
display: block !important;
position: absolute;
top: 10px;
right: 28px;
font-size: 16px;
color: #565a5c;
}
[data-palladio-graph-view] .metrics .acknowledgement {
float: right;
}