forked from microsoft/pxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton.less
More file actions
40 lines (32 loc) · 976 Bytes
/
button.less
File metadata and controls
40 lines (32 loc) · 976 Bytes
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
.image-editor-button {
text-align: center;
line-height: 2rem;
width: 1.75rem;
height: 1.75rem;
border-radius: 0.25rem;
margin: 0.375rem;
transition: color 0.1s;
color: var(--sidebar-icon-active-color);
cursor: pointer;
user-select: none;
}
.image-editor-button.toggle, .image-editor-button.disabled {
color: var(--sidebar-icon-inactive-color);
}
.image-editor-button.disabled {
cursor: not-allowed;
}
.image-editor-button.toggle:hover {
color: var(--sidebar-icon-active-color);
}
.cursor-button-contents {
background-color: var(--sidebar-icon-active-color);
transition: background-color 0.1s;
display: inline-block;
}
.image-editor-button.toggle .cursor-button-contents, .image-editor-button.disabled .cursor-button-contents {
background-color: var(--sidebar-icon-inactive-color);
}
.image-editor-button.toggle:hover .cursor-button-contents {
background-color: var(--sidebar-icon-active-color);
}