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@use "../global-styles/variables.module.scss";
@use "../global-styles/fonts.scss";
.BlockersTableColumnToggle {
}
.blockersTableToggleButton {
color:variables.$black !important;
float:right;
}
.popoverFieldset {
border: 0;
label {
display:flex;
width:100%;
padding: calc(variables.$spacing/4) 0;
}
legend {
padding-top: variables.$spacing;
font-weight: bold;
border-bottom:1px solid variables.$black;
}
}
.popoverContent {
border-radius: variables.$spacing;
padding: variables.$spacing;
background-color: variables.$white;
min-width: 200px;
box-shadow:
hsl(206 22% 7% / 35%) 0px 10px 38px -10px,
hsl(206 22% 7% / 20%) 0px 10px 20px -15px;
animation-duration: 400ms;
animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
will-change: transform, opacity;
}
.popoverContent:focus {
box-shadow:
hsl(206 22% 7% / 35%) 0px 10px 38px -10px,
hsl(206 22% 7% / 20%) 0px 10px 20px -15px
}
.popoverContent[data-state="open"][data-side="top"] {
animation-name: slideDownAndFade;
}
.popoverContent[data-state="open"][data-side="right"] {
animation-name: slideLeftAndFade;
}
.popoverContent[data-state="open"][data-side="bottom"] {
animation-name: slideUpAndFade;
}
.popoverContent[data-state="open"][data-side="left"] {
animation-name: slideRightAndFade;
}
.popoverArrow {
fill: variables.$white;
}
.popoverClose {
font-family: inherit;
border-radius: 100%;
height: 25px;
width: 25px;
display: inline-flex;
align-items: center;
justify-content: center;
position: absolute;
top: 5px;
right: 5px;
border:0;
background: transparent;
}
.popoverClose:hover {
}
.popoverClose:focus {
}
@keyframes slideUpAndFade {
from {
opacity: 0;
transform: translateY(2px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideRightAndFade {
from {
opacity: 0;
transform: translateX(-2px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes slideDownAndFade {
from {
opacity: 0;
transform: translateY(-2px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideLeftAndFade {
from {
opacity: 0;
transform: translateX(2px);
}
to {
opacity: 1;
transform: translateX(0);
}
}