blob: 1ea0951b9224d3d8c3d6682a1593ffdf758f5a64 [file] [log] [blame]
Matteo Scandolobf7c3662016-06-02 20:30:15 -07001$panel-width: 40%;
Matteo Scandoloa3844ec2016-06-02 15:45:19 -07002e-node-map {
3 display: block;
4 height: 100%;
5
6 ng-map {
7 height: 100%;
8 }
Matteo Scandolobf7c3662016-06-02 20:30:15 -07009
10 e-node-map-panel {
11 position: absolute;
12 height: 100%;
13 top: 0;
Matteo Scandolo51365872016-06-03 10:00:05 -070014 right: -($panel-width + 5);
Matteo Scandolobf7c3662016-06-02 20:30:15 -070015 width: $panel-width;
16 background-color: $background-color;
17 background-image: url($background-image);
18 transition: all .5s ease-in-out;
Matteo Scandolo51365872016-06-03 10:00:05 -070019 box-shadow: -10px 0px 20px -5px rgba(0,0,0,0.75);
Matteo Scandolo2c2c8af2016-06-03 15:36:02 -070020 max-height: 100%;
21 overflow-y: scroll;
Matteo Scandolobf7c3662016-06-02 20:30:15 -070022
23 &.in{
24 right: 0;
25 }
26
27 .details {
28 margin-bottom: 20px;
29 .ip-address {
30 padding-top: 20px;
31 }
32 }
33 }
34}
35
36e-node-map-panel {
37 display: block;
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070038}