-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathcommon.css
More file actions
110 lines (105 loc) · 2.05 KB
/
common.css
File metadata and controls
110 lines (105 loc) · 2.05 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* Buttons */
.vp-button {
width: 80px;
height: 30px;
background: #FFFFFF;
border: 0.25px solid #E4E4E4;
box-sizing: border-box;
box-shadow: 0.5px 0.5px 0.5px rgb(0 0 0 / 10%);
border-radius: 2px;
line-height: 30px;
font-size: 14px;
text-align: center;
color: #696969;
cursor: pointer;
/* No-selection allowed for buttons */
-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:hover {
background: #F8F8F8;
}
.vp-button.cancel {
background: #E5E5E5;
border: 0px;
}
.vp-button.cancel:hover {
background: #DEDEDE;
}
.vp-button.add {
background: #FFFFFF;
}
.vp-button.add:hover {
background: #F8F8F8;
}
.vp-button.activated {
background: #F38504;
border: 0px;
color: #FFFFFF;
}
.vp-button.activated:hover {
background: #EF6B10;
}
.vp-button.disabled,
.vp-button.disabled:hover,
.vp-button:disabled,
.vp-button:disabled:hover {
background: #E5E5E5;
border: 0px;
border: 0.25px solid #E4E4E4;
color: #696969;
cursor: not-allowed;
}
/* Cursor Pointer */
.vp-cursor {
cursor: pointer;
}
.vp-vertical-line {
display: inline-block;
height: 15px;
border-right: 1px solid var(--font-primary);
}
/* Scrollbar */
.vp-scrollbar {
overflow-y: auto;
--webkit-mask-position: left top;
}
.vp-scrollbar::-webkit-scrollbar {
width: 5px;
height: 5px;
}
.vp-scrollbar::-webkit-scrollbar-thumb {
border: 0.3px solid #C4C4C4;
background: #C4C4C4;
}
/* Width selector */
.wp50 {
width: 50px;
}
.wp60 {
width: 60px;
}
.wp80 {
width: 80px;
}
.wp100 {
width: 100px;
}
.wp120 {
width: 120px;
}
.w40 {
width: 40%;
}
.w100 {
width: 100%;
}
/* font selector */
.fb {
font-weight: bold;
}