-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy path_itinerary.scss
68 lines (63 loc) · 1.27 KB
/
_itinerary.scss
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
.itinerary {
.toggle-button-container {
position: relative;
align-self: stretch;
display: flex;
justify-content: center;
button {
outline: none !important;
}
&:before {
content: '';
position: absolute;
top: 25%;
left: 40%;
height: 7px;
width: 5px;
border-right: 2px solid gray;
border-top: 2px solid gray;
}
&:after {
content: '';
position: absolute;
bottom: 25%;
left: 40%;
height: 7px;
width: 5px;
border-right: 2px solid gray;
border-bottom: 2px solid gray;
}
}
}
.manage-vias-modal {
.suggested-vias {
max-height: 30vh;
overflow-y: auto;
.loaderPathfindingInProgress {
position: absolute;
text-align: center;
padding-top: 30%;
width: 100%;
height: 100%;
left: 0;
bottom: 0;
border-radius: 0 0 4px 4px;
background-color: rgba(242, 242, 242, 0.75);
}
.suggested-via {
&-clickable {
cursor: pointer;
border-radius: 4px;
&:hover {
background-color: var(--coolgray1);
}
}
&-name {
max-width: 47%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
}