-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathcommon.css
More file actions
53 lines (49 loc) · 1.23 KB
/
common.css
File metadata and controls
53 lines (49 loc) · 1.23 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
/* visual python - buttons */
.vp-button {
width: 80px;
height: 30px;
background: #FFFFFF;
border: 0.25px solid #E4E4E4;
box-sizing: border-box;
box-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
border-radius: 2px;
line-height: 30px;
font-size: 13px;
text-align: center;
color: #696969;
cursor: pointer;
/* no-selection allowed for button */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}
.vp-button.cancel {
background: #E5E5E5;
}
.vp-button.cancel:hover {
background: #DEDEDE;
}
.vp-button.add {
background: #FFFFFF;
}
.vp-button.add:hover {
background: #F8F8F8;
}
.vp-button.activated {
background: #F38504;
color: #FFFFFF;
}
.vp-button.activated:hover {
background: #EF6B10;
}
.vp-button.disabled,
.vp-button.disabled:hover {
background: #E5E5E5;
border: 0.25px solid #E4E4E4;
color: #696969;
cursor: not-allowed;
}