-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtoolbar.pod.module.css
More file actions
75 lines (64 loc) · 1.3 KB
/
Copy pathtoolbar.pod.module.css
File metadata and controls
75 lines (64 loc) · 1.3 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.container {
position: relative;
z-index: 3;
grid-area: toolbar;
display: flex;
justify-content: space-between;
padding: var(--space-s) var(--space-md);
background-color: var(--primary-100);
border-bottom: 1px solid var(--primary-900);
ul {
padding: 0;
margin: 0;
list-style: none;
}
}
.buttonGroup {
display: flex;
justify-content: space-between;
gap: var(--space-xl);
}
@media screen and (max-device-width: 1090px) {
.buttonGroup {
gap: 0;
}
}
.button {
border: none;
color: var(--text-color);
background-color: inherit;
padding: 0.6em 1.2em;
border-radius: var(--border-radius-m);
font-size: var(--fs-xs);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: var(--space-s);
transition: all 0.3s ease-in-out;
cursor: pointer;
}
.button svg {
font-size: var(--fs-s);
}
.button:focus-visible {
outline: 1px auto var(--primary-500);
}
.button:hover {
background-color: var(--primary-900);
color: var(--pure-white);
}
.vscode .button:hover {
background-color: var(--primary-700);
color: var(--primary-200);
}
.button:disabled {
color: var(--primary-300);
cursor: not-allowed;
}
.button:disabled:hover {
background-color: inherit;
}
.vscode .button:disabled:hover {
color: var(--text-color);
}