-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
56 lines (48 loc) 路 1.01 KB
/
Copy pathstyles.css
File metadata and controls
56 lines (48 loc) 路 1.01 KB
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
@import "../../TooltipDetached/css/styles.css";
.Container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.5rem;
}
.ButtonGroup {
display: flex;
}
.IconButton:not(:first-child) {
border-left: 0;
}
.Positioner {
width: var(--positioner-width);
height: var(--positioner-height);
max-width: var(--available-width);
}
.ActionButton {
box-sizing: border-box;
display: flex;
height: 2rem;
align-items: center;
justify-content: center;
margin: 0;
padding: 0 0.75rem;
border: 1px solid var(--color-gray-900);
background-color: var(--color-gray-50);
color: var(--color-gray-900);
font-family: inherit;
font-size: 0.875rem;
line-height: 1;
white-space: nowrap;
-webkit-user-select: none;
user-select: none;
}
@media (hover: hover) {
.ActionButton:hover {
background-color: var(--color-gray-100);
}
}
.ActionButton:active {
background-color: var(--color-gray-200);
}
.ActionButton:focus-visible {
outline: 2px solid var(--color-blue);
outline-offset: -1px;
}