forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimageButton.css
More file actions
47 lines (39 loc) · 789 Bytes
/
imageButton.css
File metadata and controls
47 lines (39 loc) · 789 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
41
42
43
44
45
46
:root {
--button-size: 18px;
}
.image-button {
border-width: 0px;
border-style: solid;
cursor: pointer;
text-align: center;
line-height: 16px;
overflow: hidden;
width: var(--button-size);
height: var(--button-size);
margin-left: 10px;
padding: 1px;
background-color: transparent;
cursor: hand;
}
.image-button-inner-disabled-filter {
opacity: 0.5;
}
.image-button-child {
max-width: 100%;
max-height: 100%;
}
.image-button-child img{
max-width: 100%;
max-height: 100%;
}
.image-button-image svg{
pointer-events: none;
}
.image-button-vscode-light:disabled {
border-color: gray;
filter: grayscale(100%);
}
.image-button-vscode-dark:disabled {
border-color: gray;
filter: grayscale(100%);
}