blob: e2617b8b0425b3d49666a71030876e526d7269e7 (
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
|
.vsp-overlay-wrapper {
display: flex;
align-items: center;
position: absolute;
left: 68%;
top: 14%;
height: 100%;
pointer-events: none;
z-index: 100;
.vsp-overlay-list {
padding: 0 20px;
}
.vsp-overlay-arrow {
border-style: solid;
position: relative;
bottom: -18px;
border-width: 6px;
border-left-width: 2px;
border-color: transparent;
border-right-color: $light-gray;
&:after {
position: absolute;
border-style: solid;
bottom: -10px;
left: -9px;
border-width: 10px;
border-color: transparent;
border-right-color: $white;
content: ' ';
}
}
.vsp-overlay {
pointer-events: all;
width: 205px;
cursor: default;
background-color: $white;
@include box-shadow(0px 2px 9.2px 0.8px rgba(24, 24, 25, 0.25));
border-radius: 6px;
padding: 0 0 10px 0;
display: flex;
flex-direction: column;
margin: 10px 0 10px 0;
.vsp-overlay-title {
@extend .heading-5-semibold;
margin-bottom: 15px;
padding: 10px 20px 10px 20px;
background: $highlight-gray;
color: $text-black;
text-transform: uppercase;
border-radius: 6px 6px 0 0;
}
.vsp-overlay-detail {
@extend .body-2;
&:hover {
color: $blue;
}
text-transform: none;
@include ellipsis(auto, block);
border-bottom: 1px solid $tlv-light-gray;
cursor: pointer;
padding: 5px 0 5px 0;
&:last-child {
border-bottom: none;
}
}
.vsp-overlay-see-more {
color: $blue;
cursor: pointer;
margin-top: 12px;
align-self: center;
}
}
}
|