-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsignature.dialog.css
More file actions
75 lines (63 loc) · 1.76 KB
/
signature.dialog.css
File metadata and controls
75 lines (63 loc) · 1.76 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
.e-signDialog-root-container {
display: flex;
flex-flow: column;
gap: 8px;
height: 100%;
overflow: hidden;
font-family: var(--designer-font-family);
}
.e-signDialog-strokeColorDiv, .e-signDialog-strokeWidthDiv {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
}
.e-signDialog-size .e-icons.e-resize-handle.e-south-east {
font-family: "e-icons" !important;
}
.e-signDialog-btn-clear, .e-signDialog-cropIconDiv {
cursor: pointer
}
.e-signDialog-border {
background-color: white;
border: 0.5px solid rgb(229, 231, 235);
border-radius: 2px;
}
.e-signDialog-text-span {
height: 20px;
overflow: hidden;
text-overflow: ellipsis;
}
.e-signDialog-size {
min-width: 430px !important;
min-height: 400px !important;
}
.e-signDialog-cropBox {
position: absolute;
border: 2px dashed #f00;
}
.e-signDialog-cropIconDiv {
background-image: url('images/cropicon.svg');
background-repeat: no-repeat;
background-position: 50% 50%;
border: 1px solid dodgerblue;
border-radius: 3px;
height: 29px;
width: 42px;
}
.e-signDialog-cropIconDiv:focus, .e-signDialog-btn-clear:focus {
box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #4f46e5;
}
.e-signDialog-canvas {
cursor: default;
background-color: transparent;
border: none;
}
.e-signDialog-cropIcon-enable {
cursor: pointer;
background-color: lightblue;
}
.e-signDialog-cropIcon-disable {
background-color: transparent;
cursor: default;
}