-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext-imageannotation.css
91 lines (72 loc) · 1.35 KB
/
ext-imageannotation.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
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
html body {
overflow: hidden;
}
#svg_editor #textpanel {
display: inline-block;
position: relative;
top: 1px;
bottom: 0px;
right: 0px;
width: 100%;
overflow: auto;
margin: 0px;
margin-left: 10px;
-moz-user-select: none;
-webkit-user-select: none;
}
#svg_editor #sidepanels {
overflow: scroll;
}
#svg_editor #linelist {
margin: 1px;
padding: 0px;
width: 127px;
border-collapse: collapse;
border: 1px solid #808080;
background-color: #FFFFFF;
}
#svg_editor #linelist tr.linesel {
border: 1px solid #808080;
background-color: #CCCCCC;
}
/* #svg_editor #linelist tr.linesel td.linename { */
/* font-weight: bold; */
/* } */
#svg_editor #layerlist td.layervis {
width: 22px;
cursor:pointer;
}
#svg_editor #linelist td.linelink * {
display: block;
}
#svg_editor #linelist td.linelink {
width: 30px;
background-color: LightGreen;
}
#svg_editor #linelist td.lineunlinked {
/* background-image: none; */
cursor:pointer;
background-color: white;
}
#svg_editor #linelist td.lineunlinked * {
/* display: none; */
opacity: 0.8;
}
#svg_editor #linelist td.linename {
cursor: pointer;
}
#textpanel .linked {
background-color: #00FF00;
font-weight: bold;
}
svg .imageannotationLine {
fill: red;
}
svg .imageannotationLineSelected {
opacity: 0.7;
stroke-width: 10;
}
svg .imageannotationLinked {
fill: blue;
stroke-width: 2;
}