-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (33 loc) · 727 Bytes
/
style.css
File metadata and controls
40 lines (33 loc) · 727 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
.svg-widget {
height: 100%;
}
.svg-widget .grid {
border: solid 2px #F7F8A6;
}
.svg-widget svg *:not(.grid):not(text):not(tspan) {
stroke-width: 1px;
}
.svg-widget svg text {
stroke-width: 0;
fill: none;
margin: 0;
padding: 0;
}
.svg-widget svg[data-control=move] *:not(.grid):hover,
.svg-widget svg[data-control=rubber] *:not(.grid):hover {
cursor: move;
stroke-width: 2px;
}
.svg-widget svg[data-control=text] text:hover {
cursor: pointer;
}
.svg-widget .anchor {
display: none;
}
.svg-widget svg[data-control=move] .anchor,
.svg-widget svg[data-control=text] .anchor,
.svg-widget svg[data-control=rubber] .anchor {
fill: rgba(213, 236, 24, 0.2);
stroke: rgb(14, 14, 14);
display: block;
}