-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
35 lines (28 loc) · 804 Bytes
/
style.css
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
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
font-family: "Poppins", ui-sans-serif, system-ui, -apple-system,
BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
"Noto Color Emoji";
}
.diagram {
background-image: radial-gradient(lightgray 1px, transparent 0);
background-size: 21px 21px;
}
.grid-stack-item-content {
cursor: pointer;
}
.leader-line g {
z-index: 400 !important;
cursor: no-drop !important;
pointer-events: auto;
}
.leader-line g:hover > use:first-of-type {
stroke: yellow !important;
}
.grid-stack .grid-stack-item-content:hover > * {
background: lightyellow;
}
.grid-stack-item-content {
height: auto !important;
}